/* styles.css */

/* General Styles */
body {
    font-family: Arial, sans-serif;
    /* background-color: #f4f4f4; */
    background-image: url('mobback.png');
    background-size: cover; /* Ensures the image covers the entire background */
    background-position: center; /* Centers the background image */
    background-attachment: fixed; /* Keeps the background fixed during scrolling */
    margin: 0;
    padding: 20px;
}

h2 {
    text-align: center;
    color: #ffffff;
}

h3 {
    color: #34495e;
}

/* Form Styles */
form {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 600px;
    margin: 20px auto;
}

label {
    font-weight: bold;
    display: block;
    margin: 10px 0 5px;
    
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 95%;
    padding: 10px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    margin-bottom: 15px;
}

input[type="radio"] {
    margin-right: 10px;
}

/* Submit Button */
input[type="submit"] {
    background-color: #27ae60;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #219653;
}

/* Responsive Design */
@media (max-width: 600px) {
    form {
        padding: 15px;
        margin: 10px;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1.2em;
    }

    input[type="submit"] {
        width: 100%;
    }
}
