* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	background-image:url(BG-Computer-Money_BG.png);
}

.container {
    width: 100%;
    max-width: 600px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    margin-bottom: 10px;
    color: #333;
}

p {
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
select:focus {
    border-color: #4CAF50; /* Green focus border */
    outline: none;
}

.submit-button {
    background-color: #4CAF50; /* Green background */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold; /* Bold font */
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #45a049; /* Darker green on hover */
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    color: black;
    width: 100%;
    position: relative;
    bottom: 0;
}

.form-group {
    margin-bottom: 15px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="text"],
select,
textarea {
    width: 100%; /* Make all inputs and textarea full width */
    padding: 10px; /* Add padding for better appearance */
    border: 1px solid #ccc; /* Border style */
    border-radius: 4px; /* Rounded corners */
    box-sizing: border-box; /* Include padding and border in width */
}

textarea {
    resize: vertical; /* Allow vertical resizing only */
}