/* Auth Pages Styles */

.c-ttl__01 {
    text-align: left;
    margin: 20px 0 10px 0;
}

.c-txt__01 {
    text-align: left;
    color: #666;
    font-size: 14px;
    margin: 0 0 30px 0;
    line-height: 1.5;
}

.password-reset-section {
    padding: 2.5rem 0;
}

.sec-login__list {
    margin-bottom: 16px;
}

.sec-login__list-item {
    margin-bottom: 20px;
}

.sec-login__list-ttl {
    color: #333;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.sec-login__list-item input::placeholder {
    font-size: 12px;
    font-weight: 700;
}

.sec-login__back-to-login {
    text-align: center;
    margin-top: 20px;
}

.c-btn__02 {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    padding: 12px 24px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 50px;
    display: block;
    width: 100%;
    max-width: 436px;
    margin: 0 auto;
    text-align: center;
    transition: all 0.3s ease;
}

@media screen and (min-width: 835px) {
    .c-btn__02 {
        border-radius: 8px;
    }

    .forgot-password-page .sec-login {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
    }

    .forgot-password-page .sec-login__form {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        transform: none !important;
        margin: 0 auto;
        width: 100%;
        max-width: 540px;
    }

    .forgot-password-page .sec-login__form form {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .forgot-password-page .password-reset-section {
        width: 100%;
        max-width: 436px;
    }

    .forgot-password-page .sec-login__back-to-login {
        width: 100%;
        max-width: 436px;
    }
}

@media screen and (max-width: 834px) {
    .c-btn__02 {
        max-width: 335px;
    }
}

.c-btn__02:hover {
    background-color: #f8f9fa;
    border-color: #999;
}

.sec-login__forgot-password {
    text-align: center;
    margin: 15px 0 40px;
    font-size: 12px;
    font-weight: 500;
}

.forgot-password-link {
    color: #333;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.forgot-password-link:hover {
    color: #007bff;
}

.arrow-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.forgot-password-link:hover .arrow-icon {
    transform: translateX(4px);
}

html, body {
    height: 100% !important;
}

.sec-login {
    min-height: 100vh;
    height: 100%;
}

.form-center-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
}

.form-center-container .sec-login__form {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    margin: 0 auto;
    width: 100%;
    max-width: 540px;
}

.form-center-container .sec-login__form form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-center-container .password-reset-section {
    width: 100%;
    max-width: 436px;
}

.form-center-container .sec-login__back-to-login {
    width: 100%;
    max-width: 436px;
}

@media (max-width: 834px) {
    .sec-login__form {
        height: 100%;
        min-height: 100vh;
        display: flex;
    }
}

/* ====================================================
Toast Notification Styles
==================================================== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    pointer-events: none;
}

.toast {
    background: white;
    color: #28a745;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    pointer-events: auto;
    max-width: 300px;
    font-size: 14px;
    line-height: 1.4;
    border: 1px solid #e9ecef;
}

.toast.show {
    transform: translateX(0);
}

.toast.hide {
    transform: translateX(100%);
}

.toast.success {
    background: white;
    color: #28a745;
}

.toast.error {
    background: white;
    color: #dc3545;
}

.toast.info {
    background: white;
    color: #17a2b8;
}

.toast.warning {
    background: white;
    color: #ffc107;
}


