.logo-image {
    text-align: center;
    
}

.logo-image span {
    font-size: 32px;
    font-weight: 700;
    color: #2F4D01;
    letter-spacing: -0.5px;
}

.parent-container-for-auth-header-and-login-btn {
    height: 100%; 
    display: flex; flex-direction: column;
    justify-content: space-between;
}


.email-icon {
    position: absolute;
    left: 16px;
}

.password-batch-icon {
    position: absolute;
    left: 16px;
}

.form-input-elements {
    position: relative;
}


.email-icon-and-input-container,
.password-icon-and-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.parent-container-for-form-input-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-inputs:focus {
    outline: none;
    border-color: #50BF46;
    background: white;
    box-shadow: 0 0 0 3px rgba(80, 191, 70, 0.1);
}



.green-tick-icon {
    position: absolute;
    right: 16px;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.auth-title {
    font-family: Nunito Sans;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #868686;
    margin: 0px;
}

.form-inputs:valid + .green-tick-icon {
    opacity: 1;
}


#email-message,
.password-error-msg {

    color: #DC1F1F;
    /* display: block; */
    /* margin-top: 8px; */
    /* font-size: 14px; */
    /* color: #ef4444;
    min-height: 20px; */
}

.forget-password-para {
    /* margin-top: 12px; */
    text-align: right;
    margin: 0px;
}

.forget-password-para a {
    color: #2FEF10;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.forget-password-para a:hover {
    /* color: #45a63a; */
    text-decoration: underline;
}


.form-btn:hover {
    background: #45a63a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(80, 191, 70, 0.3);
}

.form-btn:active {
    transform: translateY(0);
}

.form-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive Design */
@media (max-width: 480px) {
    .main-login-div {
        padding: 32px 24px;
        margin: 16px;
    }

    .auth-text {
        font-size: 24px;
    }

    .auth-description {
        font-size: 15px;
    }

    .form-inputs {
        padding: 14px 16px;
        font-size: 15px;
    }
}

/* Loading state */
.form-btn.loading {
    position: relative;
    color: transparent;
}

.form-btn.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Form validation styles */
.form-inputs.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.form-inputs.success {
    border-color: #50BF46;
    background: #f0fdf4;
}