/* ================================================================================
	Item Name: SushiLab Login Page Styles
================================================================================ */

body {
    background-color: #516FF7 !important;
}

.content-wrapper {
    background-color: #516FF7 !important;
}
.login-title {
    font-size: 3rem !important;
	text-align: center;
}

.login-title-text {
	color: var(--Text-Lead, #484668);
	text-align: center;
	font-family: Poppins;
	font-size: 45px;
	font-style: normal;
	font-weight: 700;
	line-height: 32px;
	letter-spacing: -0.9px;
}
/** login style **/
.sushilab-logo img {
    max-width: 411px;
    width: 100%;
}
.sushilab-tm-image {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.sushilab-login-content {
    text-align: center;
}
.sushilab-tm-image img {
    max-width: 208px;
    width: 100%;
}
.login-text-desc {
    font-size: 15px;
    color: #484668;
    font-weight: 400;
    line-height: 20px;
}
.separator {
    display: flex;
    justify-content: center;
    margin: 20px 0 20px;
}
.separator span{
	height: 5px; width: 100px;
	 background: #516FF7;
}
.btn-google {
    background: #FFF;
}
.auth-footer-btn span {
    color: #000000;
    font-size: 13px;
    font-weight: 600;
}
.auth-footer-btn a {
    background: #FAFCFF;
    display: flex !important;
    border: solid 1px #49576E33;
    width: 100%;
    border-radius: 5px;
    margin: 0 auto !important;
    text-align: center;
    padding: 10px;
    max-width: 240px;
}
.auth-footer-btn a:hover,
.auth-footer-btn a:focus {
    background: #FFF;
}
.login-wrapper {
    padding: 20px 20px 40px;
    position: relative;
    overflow: hidden;
}
.login-error-div {
    max-width: 240px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}


/* ================= Login Card Footer ================= */
.auth-card-main {
    min-height: 90vh;
}

.login-card-footer {
    margin-top: 0px;
    padding-bottom: 80px;
}

.login-card-footer ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px; /* space between items */
    padding: 0;
    margin: 0;
    list-style: none;
    color: #FAFCFF;
    font-size: 12px;
    font-weight: 400;
}

.login-card-footer ul li {
    position: relative;
}

/* Dot separator */
.login-card-footer ul li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px; /* half the gap */
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #FFFFFF;
}

/* Link styling if needed */
.login-card-footer ul li a {
    color: #FAFCFF;
    text-decoration: none;
}
.login-card-footer ul li a:hover {
    text-decoration: none;
}

.login-via svg {
    transform: rotate(-90deg);
    width: 12px !important;
}
.login-via svg path {
    fill: #247CFF;
}
.login-via a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #247CFF;
    padding: 10px;
    cursor: pointer;
}

/** login with email **/
.login-with-email {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: white;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 300ms ease-in-out;
}
.login-with-email.active {
    left: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.login-with-email .sushilab-login-content {
    margin-bottom: 30px;
}
.login-with-email .login-via {
    margin: 15px 0;
}

.login-with-email .form-group input[type="text"]:focus,
.login-with-email .form-group input[type="email"]:focus,
.login-with-email .form-group input[type="password"]:focus {
    outline: none;
    border-color:  #516FF7;
    background: white;
}
.login-with-email .form-group input[type="text"],
.login-with-email .form-group input[type="email"],
.login-with-email .form-group input[type="password"] {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #E5E8EB;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.login-with-email .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
    font-size: 16px;
}
.login-with-email .forgot-password {
    color: #247CFF;
}
.login-with-email .submit-btn {
    width: 100%;
    padding: 1rem;
    background: #516FF7;
    color: white;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.login-with-email .submit-btn:hover {
    background: #415fe7;
}
.login-with-email .form-group label {
    color: #484668;
    font-size: 16px;
    font-weight: 400;
    padding: 5px 0;
}
.password-container {
    position: relative;
}
.password-container svg {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
.login-with-email .form-group input::placeholder{
    color: #484668;
    font-size: 16px;
}





@media screen and (max-width: 640px){

    /* Login footer stacking on mobile */
    .login-card-footer ul {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        text-align: center;
    }
    .login-card-footer ul li:not(:last-child)::after {
        display: none;
    }
}

@media screen and (max-width: 480px){
    .login-text-desc {
        font-size: 13px;
    }
    .sushilab-tm-image img {
        max-width: 190px;
    }
}