
/*login css*/

/* =====================================================
   GENYX COLOR SYSTEM
===================================================== */

.genyx-login-wrapper{

    --genyx-primary:#9F0303;

    --genyx-primary-hover:#c10808;

    --genyx-primary-light:rgba(159,3,3,.15);

    --genyx-primary-glow:rgba(159,3,3,.35);

    --genyx-bg:#050505;

    --genyx-bg-soft:#111111;

    --genyx-card:#0f0f0f;

    --genyx-card-2:#161616;

    --genyx-border:rgba(255,255,255,.10);

    --genyx-text:#ffffff;

    --genyx-text-muted:#b8b8b8;

    --genyx-placeholder:#808080;

}

/* =====================================================
   FORGOT PASSWORD
===================================================== */

.genyx-login-wrapper .genyx-login-options a,

.genyx-login-wrapper .forgot-password-link{

    color:#9F0303;

    font-size:14px;

    font-weight:500;

    text-decoration:none;

    transition:color .25s ease;

}

.genyx-login-wrapper .genyx-login-options a:hover,

.genyx-login-wrapper .forgot-password-link:hover{

    color:#c10808;

}
/* General Wrapper*/
.login-signup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: transparent;
    min-height: 100vh;
}

/* ---------- Box ---------- */
.login-signup-box {
    background: #000;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

/* ---------- Tabs ---------- */


.genyx-login-wrapper .tab-buttons{

    display:flex;

    align-items:center;

    gap:4px;

    width:100%;

    margin:0 0 36px;

    padding:4px;

    border-radius:14px;

    background:#0d1423;

    border:1px solid rgba(255,255,255,.08);

}

/* =====================================================
   TAB BUTTON
===================================================== */

.genyx-login-wrapper .tab-btn{

    flex:1;

    height:56px;

    padding:0;

    border:none;

    border-radius:10px;

    background:transparent;

    color:#9aa7bc;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;

}

.genyx-login-wrapper .tab-btn:hover{

    color:#ffffff;

    background:rgba(255,255,255,.05);

}   
	   
.genyx-login-wrapper .tab-btn.active{

    color:#ffffff;

    background:linear-gradient(
    180deg,
    #b90404,
    #9F0303
);

    box-shadow:
        0 10px 28px rgba(159,3,3,.40);

}
	
.genyx-login-wrapper .tab-btn.active:hover{

    background:linear-gradient(
        180deg,
#c10808,
#9F0303
    );

    color:#ffffff;

}

.genyx-login-wrapper .tab-btn:active{

    transform:scale(.98);

}

/* ---------- Forms ---------- */
.tab-content {
    display: none;
    flex-direction: column;
}

.tab-content.active {
    display: flex;
}

/* =====================================================
   INPUT FIELD
===================================================== */

.genyx-login-wrapper .genyx-login-input input[type="text"],
.genyx-login-wrapper .genyx-login-input input[type="email"],
.genyx-login-wrapper .genyx-login-input input[type="password"]{

    width:100%;

    height:60px;

    padding:0 54px 0 18px;

    margin:0;

    border-radius:14px !important;

    border:1px solid rgba(255,255,255,.10);

    background:#131313;

    color:#ffffff;

    font-size:15px;

    font-weight:400;

    transition:
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;

    box-shadow:none;

    appearance:none;

}

/* =====================================================
   INPUT FOCUS
===================================================== */

.genyx-login-wrapper .genyx-login-input input:focus{

    outline:none;

    background:#181818;

    border-color:#9F0303;

box-shadow:
0 0 0 4px rgba(159,3,3,.18);

}

/* =====================================================
   PLACEHOLDER
===================================================== */

.genyx-login-wrapper .genyx-login-input input::placeholder{

    color:#7f8ca5;

    opacity:1;

}

/* =====================================================
   INPUT ICON
===================================================== */

.genyx-login-wrapper .genyx-login-input i{

    position:absolute;

    right:18px;

    top:50%;

    transform:translateY(-50%);

    font-size:18px;

    color:#6b7a96;

    pointer-events:none;

    transition:.25s;

}

.genyx-login-wrapper .genyx-login-input input:focus + i{

    color:#9F0303;

}

/* =====================================================
   CHROME AUTOFILL
===================================================== */

.genyx-login-wrapper input:-webkit-autofill,

.genyx-login-wrapper input:-webkit-autofill:hover,

.genyx-login-wrapper input:-webkit-autofill:focus{

    -webkit-text-fill-color:#ffffff;

    -webkit-box-shadow:0 0 0 1000px #111827 inset;

    transition:background-color 5000s ease-in-out 0s;

}

.genyx-login-wrapper input:disabled{

    opacity:.65;

    cursor:not-allowed;

}

/* =====================================================
   PRIMARY BUTTON
===================================================== */

.genyx-login-wrapper .genyx-login-button{

    width:100%;

    height:62px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    padding:0 24px;

    border:none;

    border-radius:14px;

    cursor:pointer;

    font-size:16px;

    font-weight:600;

    letter-spacing:.3px;

    color:#ffffff;

    background:linear-gradient(
    180deg,
    #b90404,
    #9F0303
);

    box-shadow:
        0 12px 30px rgba(159,3,3,.40);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        filter .25s ease;

}

.genyx-login-wrapper .genyx-login-title{

    margin:18px 0 14px;

    font-size:48px;

    font-weight:500;

    line-height:1.15;

    letter-spacing:-0.02em;

    text-align:center;

    color:#ffffff;

}

/* =====================================================
   BUTTON HOVER
===================================================== */

.genyx-login-wrapper .genyx-login-button:hover{

    transform:translateY(-2px);

    filter:brightness(1.05);

    box-shadow:
       0 18px 40px rgba(159,3,3,.45);

}

/* =====================================================
   BUTTON ACTIVE
===================================================== */

.genyx-login-wrapper .genyx-login-button:active{

    transform:translateY(1px);

}

/* =====================================================
   DISABLED
===================================================== */

.genyx-login-wrapper .genyx-login-button:disabled{

    opacity:.6;

    cursor:not-allowed;

    transform:none;

    box-shadow:none;

}

/* =====================================================
   BUTTON ICON
===================================================== */

.genyx-login-wrapper .genyx-login-button i{

    font-size:18px;

    transition:transform .25s ease;

}


.genyx-login-wrapper .genyx-login-button:hover i{

    transform:translateX(4px);

}
/* =====================================================
   LOGIN SUBTITLE
===================================================== */

.genyx-login-wrapper .genyx-login-subtitle{

    margin:0 0 42px;

    text-align:center;

    font-size:18px;

    font-weight:400;

    line-height:1.6;

    color:#9aa7bc;

}

.genyx-login-form-divider{

    display:flex;

    align-items:center;

    gap:18px;

    margin:10px 0;

}

.genyx-login-form-divider::before,
.genyx-login-form-divider::after{

    content:"";

    flex:1;

    height:1px;

    background:var(--genyx-border);

}

.genyx-login-form-divider span{

    color:#98a5b8;

    font-size:15px;

}

/* ---------- Social Buttons ---------- */

.btn-facebook {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: 0.3s;
}

/* =====================================================
   
BUTTON
===================================================== */

.genyx-login-wrapper button.genyx-google-btn{

    width:100%;

    height:62px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    margin-top:6px;

    padding:0 22px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.10);

    background:#ffffff;

    color:#3c4043;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease,
        background .25s ease;

    box-shadow:

        0 12px 28px rgba(0,0,0,.18);

}

/* =====================================================
   GOOGLE BUTTON HOVER
===================================================== */

.genyx-login-wrapper .genyx-google-btn:hover{

    transform:translateY(-2px);

    background:#fafafa;

    border-color:#d8dee9;

    box-shadow:

        0 18px 40px rgba(0,0,0,.24);

}
.genyx-login-wrapper .genyx-google-btn:active{

    transform:translateY(1px);

}
.genyx-login-wrapper .google-icon{

    display:flex;

    justify-content:center;

    align-items:center;

    width:22px;

    height:22px;

    flex:none;

}


.genyx-login-wrapper .google-icon svg{

    width:22px;

    height:22px;

}

.genyx-login-wrapper .google-text{

    font-family:Roboto,Arial,sans-serif;

    font-size:15px;

    font-weight:600;

    color:#3c4043;

    line-height:1;

}

/*
.btn-google:hover {
    background: #f0f0f0;
	color: black;
	border: 1px solid #ddd
}*/
	
/*.btn-google:hover i {
  color: #000000;
}

.btn-google i {
    color: #0091ff;
}
	
.btn-google img,
.btn-google svg {
    width: 18px;
    height: 18px;
}	*/

.btn-facebook {
    background: #3F51B5;
    color: #fff;
}

.genyx-login-wrapper .genyx-login-field{

    margin-bottom:24px;

}
.btn-facebook:hover {
    background: #3F51B5;
}

.btn-facebook i {
    color: #fff;
}
.genyx-login-form-divider{

    display:flex;

    align-items:center;

    gap:18px;

    margin:10px 0;

}


/* =====================================================
   LOGIN OPTIONS ROW
===================================================== */

.genyx-login-wrapper .genyx-login-options{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    margin:22px 0 32px;

    width:100%;

}

/* =====================================================
   REMEMBER ME
===================================================== */

.genyx-login-wrapper .genyx-login-options label{

    display:flex;

    align-items:center;

    gap:10px;

    margin:0;

    cursor:pointer;

    font-size:14px;

    font-weight:500;

    color:#b9c3d7;

    user-select:none;

}

/* =====================================================
   CUSTOM CHECKBOX
===================================================== */

.genyx-login-wrapper .genyx-login-options input[type="checkbox"]{

    appearance:none;

    -webkit-appearance:none;

    width:18px;

    height:18px;

    margin:0;

    border-radius:5px;

    border:1px solid rgba(255,255,255,.18);

    background:#121826;

    cursor:pointer;

    transition:
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;

}

.genyx-login-wrapper .genyx-login-options input[type="checkbox"]:checked{

    background:#9F0303;

    border-color:#9F0303;

    box-shadow:
0 0 0 4px rgba(159,3,3,.18);

}
.genyx-login-form-divider::before,
.genyx-login-form-divider::after{

    content:"";

    flex:1;

    height:1px;

    background:var(--genyx-border);

}

.genyx-login-form-divider span{

    color:#98a5b8;

    font-size:15px;

}
	 /*  
.genyx-google-btn{

    width:100%;

    height:62px;

    border-radius:12px;

    background:#fff;

    border:1px solid #d5dce7;

    transition:.25s;

    font-weight:500;

}

.genyx-google-btn:hover{

    background:#f7f9fc;

    border-color:var(--genyx-primary);

    transform:translateY(-2px);

    box-shadow:

        0 10px 28px rgba(37,99,255,.15);

}
*/
/* =====================================================
   FIELD LABELS
===================================================== */

.genyx-login-wrapper .genyx-login-field label{

    display:block;

    margin-bottom:10px;

    font-size:15px;

    font-weight:500;

    line-height:1.4;

    color:#ffffff;

}

.genyx-login-wrapper{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:100vh;

    width:100%;

    padding:60px 24px;

    margin:0;

    overflow:hidden;

    background:
    radial-gradient(circle at top,
        rgba(159,3,3,.18) 0%,
        rgba(20,0,0,.10) 30%,
        #0a0a0a 65%,
        #050505 100%);

    font-family:"Segoe UI",Tahoma,Geneva,Verdana,sans-serif;

}

.genyx-login-wrapper::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

   background:rgba(159,3,3,.22);

    filter:blur(140px);

    top:-180px;

    left:50%;

    transform:translateX(-50%);

    pointer-events:none;

    z-index:0;

}



.genyx-login-card{

    position:relative;

    z-index:1;

    width:100%;

    max-width:560px;

    padding:52px;

    border-radius:24px;

    background:rgba(15,15,15,.88);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(22px);

    -webkit-backdrop-filter:blur(22px);

    box-shadow:
        0 25px 80px rgba(0,0,0,.45),
        0 0 80px rgba(159,3,3,.18);

}

/* =====================================================
   INPUT WRAPPER
===================================================== */

.genyx-login-wrapper .genyx-login-input{

    position:relative;

    display:flex;

    align-items:center;

}
.genyx-login-card::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:inherit;

    border:1px solid rgba(255,255,255,.04);

    pointer-events:none;

}

/* =====================================================
   RESPONSE MESSAGE
===================================================== */

.genyx-login-wrapper .genyx-login-response{

    min-height:26px;

    margin-top:18px;

    padding:14px 18px;

    border-radius:12px;

    text-align:center;

    font-size:14px;

    font-weight:500;

    line-height:1.5;

    display:none;

}

/* =====================================================
   SUCCESS
===================================================== */

.genyx-login-wrapper .genyx-login-response.success{

    display:block;

    color:#69d68b;

    background:rgba(32,155,82,.12);

    border:1px solid rgba(105,214,139,.25);

}

/* =====================================================
   ERROR
===================================================== */

.genyx-login-wrapper .genyx-login-response.error{

    display:block;

    color:#ff7b7b;

    background:rgba(255,82,82,.10);

    border:1px solid rgba(255,82,82,.25);

}

/* =====================================================
   INFO
===================================================== */

.genyx-login-wrapper .genyx-login-response.info{

    display:block;

    color:#79b7ff;

    background:rgba(37,99,255,.10);

    border:1px solid rgba(37,99,255,.22);

}

.genyx-login-wrapper .genyx-login-response{

    animation:genyxFadeIn .25s ease;

}

@keyframes genyxFadeIn{

    from{

        opacity:0;

        transform:translateY(6px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


.genyx-login-wrapper .genyx-login-icon{

    width:92px;

    height:92px;

    margin:0 auto 28px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

   border:3px solid #9F0303;

    background:rgba(159,3,3,.08);

    box-shadow:
        inset 0 0 20px rgba(159,3,3,.12),
        0 0 30px rgba(159,3,3,.18);

}

.genyx-login-wrapper .genyx-login-icon i{

    font-size:40px;

    color:#9F0303;

    line-height:1;

}

.genyx-login-wrapper .genyx-login-icon{

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}

.genyx-login-wrapper .genyx-login-card:hover .genyx-login-icon{

    transform:translateY(-2px);

    box-shadow:
        inset 0 0 24px rgba(159,3,3,.16),
        0 0 40px rgba(159,3,3,.25);

}


@media (max-width:768px){

    .genyx-login-wrapper{

        padding:32px 16px;

    }

    .genyx-login-card{

        padding:36px 24px;

        border-radius:20px;

    }

}

@media (max-width:768px){

    .genyx-login-wrapper .genyx-login-title{

        font-size:36px;

    }

    .genyx-login-wrapper .genyx-login-subtitle{

        font-size:16px;

    }

}
@media (max-width:768px){

    .genyx-login-wrapper .genyx-login-icon{

        width:76px;

        height:76px;

        margin-bottom:22px;

    }

    .genyx-login-wrapper .genyx-login-icon i{

        font-size:34px;

    }

}

@media (max-width:768px){

    .genyx-login-wrapper .tab-buttons{

        margin-bottom:28px;

    }

    .genyx-login-wrapper .tab-btn{

        height:50px;

        font-size:15px;

    }

}

@media (max-width:768px){

    .genyx-login-wrapper .genyx-login-input input{

        height:56px;

        font-size:14px;

    }

}

@media (max-width:768px){

    .genyx-login-wrapper .genyx-login-button{

        height:58px;

        font-size:15px;

    }

}

@media (max-width:768px){

    .genyx-login-wrapper .genyx-login-options{

        flex-direction:column;

        align-items:flex-start;

        gap:14px;

    }

}

@media (max-width:768px){

    .genyx-login-wrapper .genyx-google-btn{

        height:58px;

        font-size:14px;

    }

}

@media (max-width:768px){

    .genyx-login-wrapper .genyx-login-response{

        font-size:13px;

        padding:12px 16px;

    }

}