body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #f0f9f4; /* Soft pastel green background */
}
.user_card {
    width: 450px;
    margin: auto;
    margin-top: 50px;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left; /* Align all text to the left */
}

.user_card a {
    font-size: 14px; /* Consistent font size for links */
    color: #388e3c; /* Medium green for links */
    text-decoration: none;
    margin-left: 5px; /* Add spacing between inline elements */
    display: inline-block;
}

.user_card a:hover {
    text-decoration: underline; /* Underline on hover for better visibility */
}

.user_card small {
    font-size: 14px; /* Consistent font size for all small text */
    color: #6c757d; /* Muted text color */
    display: inline; /* Ensure inline display for small text */
    margin-right: 5px; /* Add spacing between inline elements */
}

.user_card .recaptcha {
    margin-bottom: 20px; /* Added spacing between reCAPTCHA and the login button */
}

.form-title {
    color: #388e3c; /* Medium green for titles */
    text-align: center;
    margin-bottom: 20px;
}
.input-group {
    margin-bottom: 20px; /* Increased spacing for better readability */
}
.input-group-text {
    background-color: #66bb6a; /* Light green for input group text */
    color: #ffffff;
    border: none;
    height: 38px; /* Match the height of input fields */
}
.form-control {
    border: 1px solid #a5d6a7; /* Light green border for input fields */
    height: 38px; /* Ensure consistent height for input fields */
}
.form-control:focus {
    border-color: #66bb6a; /* Highlight border on focus */
    box-shadow: 0 0 5px rgba(102, 187, 106, 0.5);
}
.btn-primary {
    background-color: #66bb6a; /* Light green for buttons */
    border-color: #66bb6a;
    font-size: 16px; /* Consistent font size for buttons */
    padding: 10px 20px; /* Consistent padding for buttons */
}
.btn-primary:hover {
    background-color: #388e3c; /* Medium green on hover */
    border-color: #388e3c;
}
.d-grid {
    margin-top: 30px; /* Increased spacing above buttons */
}