/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('man-medical-office-physiotherapist-is-rehabilitating-back.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}


.form-container {
    width: 100%;
    max-width: 500px;
    margin: 20px;
    padding: 20px;
    background-color: #ffffff29;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.448);
}

h1 {
    text-align: center;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    font-weight: bold;
    color: #555;
    display: block;
    margin-bottom: 5px;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[type="time"], select, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
}

button.submit-btn {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.submit-btn:hover {
    background-color: #45a049;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }

    .form-container {
        padding: 15px;
    }

    button.submit-btn {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.2rem;
    }

    input, select, textarea {
        font-size: 12px;
    }

    button.submit-btn {
        padding: 8px;
        font-size: 12px;
    }
}
