﻿/* Overlay */
.lr-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7); /* 0.7 opacity */
    display: none;
    z-index: 9999;
    padding: 16px;
}

    /* Show state */
    .lr-overlay.is-open {
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* Modal wrapper (for animation + click handling) */
.lr-modal {
    width: 100%;
    max-width: 460px;
}

/* Optional: simple pop animation */
.lr-overlay.is-open .login_register_container {
    animation: lrPop .14s ease-out;
}

@keyframes lrPop {
    from {
        transform: translateY(6px);
        opacity: .7;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.login_register_container {
    display: flex;
    width: 500px;
    padding: 10px 20px 20px 20px;
    flex-direction: column;
    align-items: center;
    max-width:100%;
    border-radius: 5px;
    border: 1px solid #BBBCBE;
    background: #FFF;
}

.lr-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.lr-title {
    font-size: 16px;
    font-weight: 600;
}

.lr-close {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid #cfcfcf;
    background: #fff;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login_register_header {
    display: flex;
    width: 100%;
    gap: 24px;
    border-bottom: 2px solid #e7e7e7;
    margin-bottom: 14px;
}

.lr-tab {
    padding: 10px 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 14px;
    color: #777;
    position: relative;
    display: flex;
    height: 45px;
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex: 1 0 0;
}

    .lr-tab.is-active {
        color: #0c0c0c;
        font-weight: 600;
    }

        .lr-tab.is-active::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100%;
            height: 3px;
            background: #0b1b55;
            border-radius: 3px 3px 0 0;
        }

.login_register_body{
    width:100%;
}

.lr-section-title {
    display: flex;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0 12px;
    align-items: flex-start;
    height: 45px;
    padding: 10px;
}

.login_connect {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lr-social {
    height: 44px;
    border: 1px solid #bdbdbd;
    border-radius: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
}

.lr-social-icon {
    width: 26px;
    height: 26px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

    .lr-social-icon.apple {
        background-image: url('../../images/Shared/apple_icon.svg');
    }

    .lr-social-icon.google {
        background-image: url('../../images/Shared/google_icon.svg');
    }

.lr-divider {
    position: relative;
    text-align: center;
    margin: 14px 0;
    padding: 0px 20px;
    color: #666;
    font-size: 13px;
}

    .lr-divider span {
        color: #000;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: -0.15px;
    }

.lr-field {
    display: flex;
    align-items: center;
    border: 1px solid #bdbdbd;
    border-radius: 6px;
    height: 44px;
    padding: 0 12px;
    margin-bottom: 12px;
}

    .lr-field input {
        border: 0;
        outline: 0;
        width: 100%;
        font-size: 14px;
    }


    .lr-icon.user {
        background-image: none;
    }

.lr-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #222;
    margin: 4px 0 8px;
}

    .lr-check input {
        width: 16px;
        height: 16px;
    }

.lr-forgot {
    display: inline-block;
    font-size: 13px;
    color: #0b63ff;
    text-decoration: none;
    margin-bottom: 8px;
}

.lr-actions {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.lr-primary {
    height: 40px;
    min-width: 140px;
    padding: 0 18px;
    border: 0;
    border-radius: 4px;
    background: #f4cc00;
    cursor: pointer;
    font-weight: 600;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 0s 600000s, color 0s 600000s !important;
}