/* Custom CSS for the login form */
.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh; /* Adjust based on your layout */
}
.login-card {
    background: #f8f9fa; /* Light grey/white background */
    border-radius: 4px;
    padding: 50px 30px 30px; /* Extra top padding for the avatar */
    position: relative;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.login-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid #fff;
    position: absolute;
    top: -45px; /* Pulls the image up so it overlaps the border */
    left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.input-group-text.custom-icon-bg {
    background-color: #8a2a24; /* Dark red from the image */
    color: white;
    border: 1px solid #8a2a24;
    width: 45px;
    display: flex;
    justify-content: center;
    border-radius: 4px 0 0 4px;
}
.form-control.custom-input {
    border-radius: 0 4px 4px 0;
}
.forgot-link {
    font-size: 14px;
    color: #3b82f6; /* Blue link */
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
}
.forgot-link:hover {
    text-decoration: underline;
}
.btn-login {
    background-color: #8a2a24; /* Dark red */
    color: white;
    width: 100%;
    padding: 10px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    transition: background-color 0.2s;
}
.btn-login:hover {
    background-color: #6b201b;
    color: white;
}
.captcha-img {
    height: 38px; /* Match standard input height */
    background: #000;
    border-radius: 4px 0 0 4px;
}