/* ===========================================================
   BASIGARO AUTH
=========================================================== */

:root{

    --primary:#026CF4;

    --secondary:#08295B;

    --success:#08B19A;

    --warning:#F4B400;

    --white:#FFFFFF;

    --text:#2C3E50;

    --muted:#7E8A97;

    --shadow:0 15px 40px rgba(0,0,0,.18);

    --radius:26px;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    height:100%;
}

/* ===========================================================
   BODY
=========================================================== */

html,
body{

    width:100%;

    height:100%;

    margin:0;

    overflow-x:hidden;

    font-family:'Poppins',sans-serif;

}

.auth-page{

    position:relative;

    min-height:100vh;

    background:

    linear-gradient(

        rgba(8,41,91,.55),

        rgba(8,41,91,.55)

    ),

    url('../media/banner/basigaro-banner.jpeg') center center/cover no-repeat;

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;
    overflow:hidden;
    width: 100%;

}

.auth-overlay{

    position:absolute;

    inset:0;

    backdrop-filter:blur(2px);

}

.container-fluid{

    position:relative;

    z-index:2;

    height:100%;

    padding-left:80px;

    padding-right:80px;

}

.auth-row{

    min-height:100vh;

}


    /* ===========================================================
   BACK TO HOME
=========================================================== */

.back-home{

    position:absolute;

    top:28px;

    left:40px;

    z-index:100;

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.15);

    color:#FFFFFF;

    font-size:15px;

    font-weight:600;

    text-decoration:none;

    transition:all .30s ease;

}

.back-home i{

    font-size:16px;

}

.back-home:hover{

    color:#08B19A;

    background:rgba(255,255,255,.20);

    border-color:rgba(255,255,255,.30);

    text-decoration:none;

    transform:translateX(-4px);

}

/* ===========================================================
   BRANDING
=========================================================== */

.branding-section{

    display:flex;

    align-items:center;

}

.brand-wrapper{

    max-width:520px;

}

.brand-header{

    display:flex;

    align-items:center;

    gap:24px;

}

.brand-logo{

    width:150px;

    height:auto;

    flex-shrink:0;

}

.brand-title-wrapper{

    display:flex;

    flex-direction:column;

}

.brand-title{

    margin:0;

    color:#fff;

    font-size:56px;

    font-weight:700;

    letter-spacing:1px;

}

.brand-divider{

    width:120px;

    height:3px;

    background:var(--success);

    border-radius:50px;

    margin:12px 0;

}

.brand-tagline{

    color:#fff;

    line-height:1.6;

    font-size:19px;

    font-weight:500;

}

.brand-description{

    margin-top:35px;

    color:#fff;

    line-height:1.8;

    font-size:16px;

    max-width:420px;

}

/* ===========================================================
   SERVICE
=========================================================== */

.service-section{

    display:flex;

    justify-content:center;

    align-items:center;

}

.service-wrapper{

    display:flex;

    flex-direction:column;

    justify-content:center;

    gap:22px;

    width:100%;

}

.service-card{

    display:flex;

    align-items:center;

    gap:18px;

   width:205px;

    min-height:42px;

    padding:12px 16px;

    border-radius:22px;

    background:rgba(255,255,255,.16);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.20);

    box-shadow:0 12px 30px rgba(0,0,0,.15);

    transition:.30s ease;

}

.service-card.left{

    margin-right:30px;

}

.service-card.right{

    margin-left:60px;

}

.service-card:hover{

    transform:translateY(-4px) scale(1.03);

    background:rgba(255,255,255,.24);

}

.service-card img{

    width:46px;

    height:46px;

    object-fit:contain;

    flex-shrink:0;

}

.service-card span{

    color:#fff;

    font-size:16px;

    font-weight:600;

}

/* ===========================================================
   LOGIN
=========================================================== */

.login-section{

    display:flex;

    justify-content:center;

    align-items:center;

}

.login-card{

    width:100%;

    max-width:540px;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(18px);

    border:none;

    border-radius:28px;

    overflow:hidden;

    box-shadow:var(--shadow);
    margin: 30px;

}

.login-card-body{

    padding:55px;

}

.login-title{

    color:var(--secondary);

    font-size:34px;

    font-weight:700;

    margin-bottom:10px;

}

.login-subtitle{

    color:var(--muted);

    margin-bottom:35px;

}

.form-group label{

    font-size:14px;

    font-weight:600;

    color:var(--text);

    margin-bottom:10px;

}

.input-group{

    border-radius:16px;

    overflow:hidden;

}

.input-group-text{

    background:#fff;

    border-right:none;

    width:58px;

    justify-content:center;

    color:var(--primary);

}

.form-control{

    height:56px;

    border-left:none;

    font-size:15px;

    box-shadow:none !important;

}

.form-control:focus{

    border-color:#ced4da;

}

.toggle-password{

    cursor:pointer;

    background:#fff;

    color:#7a7a7a;

}

.form-options{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin:28px 0;

    font-size:14px;

}

.forgot-password{

    color:var(--primary);

    font-weight:600;

    text-decoration:none;

}

.forgot-password:hover{

    text-decoration:none;

    color:var(--secondary);

}

.btn-login{

    width:100%;

    height:56px;

    border:none;

    border-radius:50px;

    background:var(--success);

    color:#fff;

    font-size:16px;

    font-weight:600;

    transition:.30s;

}

.btn-login:hover{

    background:#07937f;

    transform:translateY(-2px);

}

.register-link{

    font-size:15px;

    color:var(--muted);

}

.register-link a{

    color:var(--primary);

    font-weight:700;

    text-decoration:none;

}

.register-link a:hover{

    color:var(--secondary);

}

/* ===========================================================
   ANIMATION
=========================================================== */

.brand-logo{

    transition:.35s ease;

}

.brand-logo:hover{

    transform:scale(1.05);

}

.login-card{

    animation:fadeUp .7s ease;

}

.service-card{

    animation:fadeLeft .7s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes fadeLeft{

    from{

        opacity:0;

        transform:translateX(50px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

/* ===========================================================
   DESKTOP
=========================================================== */

@media (max-width:1400px){

    .container-fluid{

        padding-left:60px;

        padding-right:60px;

    }

    .brand-logo{

        width:130px;

    }

    .brand-title{

        font-size:48px;

    }

    .service-card{

        width:220px;

    }

    .login-card{

        max-width:500px;

    }

}

/* ===========================================================
   LAPTOP
=========================================================== */

@media (max-width:1200px){

    .service-card{

        width:200px;

    }

    .service-card.left{

        margin-right:35px;

    }

    .service-card.right{

        margin-left:35px;

    }

    .login-card-body{

        padding:45px;

    }

}

/* ===========================================================
   TABLET
=========================================================== */

@media (max-width:991px){

    .container-fluid{

        padding:40px;

    }

    .auth-row{

        min-height:auto;

        padding:40px 0;

    }

    .branding-section{

        justify-content:center;

        text-align:center;

        margin-bottom:40px;

    }

    .brand-wrapper{

        max-width:100%;

    }

    .brand-header{

        justify-content:center;

    }

    .brand-description{

        max-width:100%;

    }

    .service-section{

        display:none;

    }

    .login-section{

        margin-top:10px;

    }

    .login-card{

        max-width:100%;

    }

}

/* ===========================================================
   MOBILE
=========================================================== */

@media (max-width:768px){

    .container-fluid{

        padding:25px;

    }

    .brand-header{

        flex-direction:column;

        gap:18px;

    }

    .brand-logo{

        width:120px;

    }

    .brand-title{

        font-size:40px;

        text-align:center;

    }

    .brand-divider{

        margin:15px auto;

    }

    .brand-tagline{

        text-align:center;

        font-size:17px;

    }

    .brand-description{

        text-align:center;

        font-size:15px;

    }

    .login-card-body{

        padding:35px;

    }

    .login-title{

        font-size:28px;

    }

    .login-subtitle{

        font-size:14px;

    }

    .form-options{

        flex-direction:column;

        gap:12px;

        align-items:flex-start;

    }

    .back-home{

    top:18px;

    left:18px;

    padding:10px 16px;

    font-size:14px;

}

}

/* ===========================================================
   SMALL MOBILE
=========================================================== */

@media (max-width:480px){

    .container-fluid{

        padding:18px;

    }

    .brand-logo{

        width:100px;

    }

    .brand-title{

        font-size:32px;

    }

    .brand-tagline{

        font-size:15px;

    }

    .brand-description{

        display:none;

    }

    .login-card{

        border-radius:22px;

    }

    .login-card-body{

        padding:28px;

    }

    .login-title{

        font-size:24px;

    }

    .btn-login{

        height:50px;

    }


}