﻿/*--------------------------------------------------------------
# Sign In
----------------------------------------------------------------*/
@media(max-width: 767px) {
    .bg-signingopass-mob {
        box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.25);
    }
}

.logo-mob {
    background-color: #fff;
}

.wlcm-lbl {
    color: var(--text-secondary);
    font-size: 36px;
    font-style: normal;
    font-weight: 300;
}

.logo-mob hr {
    border: 1px solid #EEE;
}

.login-form {
    padding: 16px;
    background-color: #fff;
    height: 100%;
}

.input-control {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    position: relative;
    height: 48px;
}

.input-icon {
    width: 52px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #ddd;
    color: #c4c4c4;
    font-size: 18px;
}

.input-control input {
    flex: 1;
    border: none;
    padding: 0 12px;
    font-size: 16px;
    height: 100%;
    outline: none;
    color: #333;
    background: transparent;
    font-size: 14px;
}

    .input-control input::placeholder {
        color: #bbb;
    }

.input-eye {
    position: absolute;
    right: 14px;
    color: #c4c4c4;
    font-size: 18px;
    cursor: pointer;
}

.input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px;
    font-size: 16px;
    color: #333;
}

    .input-wrapper input::placeholder {
        color: #aaa;
    }

.password-toggle {
    position: absolute;
    right: 15px;
    color: #bbb;
    font-size: 18px;
    cursor: pointer;
}

.login-btn {
    position: relative;
    width: 100%;
    height: 42px;
    background: var(--background-secondary);
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background-color 0.3s ease-in-out;
}

    .login-btn:disabled {
        opacity: 0.6;
        pointer-events: none;
    }

    .login-btn.loading::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 16px;
        height: 16px;
        margin: -8px 0 0 -8px;
        border: 2px solid transparent;
        border-top: 2px solid #333;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    .login-btn.loading {
        font-size: 0;
        color: transparent;
    }

    .login-btn:hover {
        background-color: var(--hover-secondary);
    }

.form-links {
    display: flex;
    font-size: 14px;
    margin: 15px 0;
    gap: 100px;
}

    .form-links .signup-link {
        color: #5D8FFC;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        white-space: nowrap;
        align-content: center
    }

        .form-links .signup-link:hover {
            color: #0026ff;
        }

    .form-links .forgot-link {
        color: #929699;
        text-align: right;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

        .form-links .forgot-link:hover {
            color: #444444;
        }


.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

    .divider::before,
    .divider::after {
        content: '';
        height: 1px;
        background: #ccc;
        position: absolute;
        top: 50%;
        width: 40%;
    }

    .divider::before {
        left: 0;
    }

    .divider::after {
        right: 0;
    }

    .divider span {
        background: #fff;
        padding: 0 10px;
        color: #666;
        font-size: 14px;
    }

.welcome-text {
    font-size: 48px;
    color: #c20082;
    text-shadow: 1px 1px 2px #aaa;
    font-weight: 300;
    margin-bottom: 20px;
}

.logo-img {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
}

.subtitle {
    font-weight: bold;
    color: #666;
    font-size: 16px;
    letter-spacing: 1px;
}

.signin-logo {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-top: 10px;
}

.social-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 10px 16px;
    background-color: #FFF;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: background 0.2s ease-in-out;
    height: 45px;
}

    .social-btn:hover {
        background-color: var(--color-gray-200);
    }

    .social-btn img {
        position: absolute;
        left: 16px;
        width: 20px;
        height: 20px;
    }

    .social-btn span {
        font-size: 14px;
        font-weight: 500;
        color: #333;
        text-align: center;
        width: 100%;
    }

.toggle-password-signin {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #ACACAC;
    font-size: 20px;
}

    .toggle-password-signin:hover {
        color: #444444;
    }
