.container {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    border: 1px solid #24b049;
    border-radius: 8px;
    background-color: #fff; /* White background for clarity */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/*
.logo {
    display: block;
    margin: 0 auto;
    width: 300px;
    height: 100px;
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

form {
    display: flex;
    flex-direction: column;
}
*/

label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

input[type="text"], input[type="tel"], input[type="number"], input[type="date"] {
    width: calc(100% - 20px); /* Adjusted width to accommodate padding */
    padding: 12px;
    margin-bottom: 20px; /* Increased margin for better vertical spacing */
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s, box-shadow 0.3s; /* Smooth transition for better feedback */
}

select {
    width: calc(107% - 20px); /* Adjusted width to accommodate padding */
    padding: 12px;
    margin-bottom: 20px; /* Increased margin for better vertical spacing */
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s, box-shadow 0.3s; /* Smooth transition for better feedback */
}

/* Styling for options within the select dropdown */
/* Styling for options within the select dropdown */
select option {
    padding: 15px; /* Increased padding for options */
    background-color: #fff; /* Background color for options */
    color: #333; /* Text color for options */
    border-radius: 8px; /* Border radius for options */
    font-size: 16px; /* Increased font size for options */
    height: 50px; /* Increased height for options */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover and selection */
}

/* Hover styling for options within the select dropdown */
select option:hover {
    background-color: #f0f0f0; /* Hover background color for options */
    color: #000; /* Hover text color for options */
}

/* Selected option styling within the select dropdown */
select option:checked {
    background-color: #0074d9; /* Selected background color for options */
    color: #fff; /* Selected text color for options */
}



input[type="text"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
    border-color: #24b049;
    outline: none;
    box-shadow: 0 0 5px rgba(15, 110, 173, 0.5); /* Highlight focused field */
}

button {
    padding: 14px 28px;
    background-color: #24b049;
    color: #000000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #4f5c5e;
    color: #ffffff;
}


.img {
    border-radius: 50%;
    height: 120px;
    width: 120px;
    display: block;
    margin: 0 auto 30px; /* Increased margin for better spacing */
    border: 2px solid transparent;
    animation: borderLoad 1s forwards, flip 1s ease-in-out;
    object-fit: contain;
}


/* Improved Heading Styles */
h2 {
    color: #24b049;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s forwards;
    margin-bottom: 30px; /* Increased margin for better spacing */
}

/* Keyframes for Image Border Animation */
@keyframes borderLoad {
    0% {
        border-color: transparent;
    }
    100% {
        border-color: #24b049;
    }
}

/* Keyframes for Image Flip Animation */
@keyframes flip {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

/* Keyframes for Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 2;
    }
}
