
@media screen and (max-width: 768px) {
    .auth-image img {
        display: none
    }

    .col-xl-5 {
        display: none !important;
    }

    .forgot-password {
        display: flex;
        flex-direction: column;
        gap: 30px;
        justify-content: start;
        align-items: flex-start;
        margin-bottom: 100px;
    }
}

/* Password toggle styles */
.password-input-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 5px;
    font-size: 18px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.password-toggle:hover {
    color: #495057;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.password-toggle:focus {
    outline: none;
    color: #00613d;
}

/* Ensure input has enough padding for the icon */
.password-input-container input {
    padding-right: 45px !important;
}

/* Loading button styles */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading .btn-text {
    opacity: 0;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Fallback for when Font Awesome doesn't load */
.toggle-text {
    font-size: 12px;
    font-weight: bold;
}




