/* ==========================================================================
   INDO NATURA EXPORTER
   INDEX.CSS
   PART 1
   HERO VIDEO • HERO LAYOUT • LEFT CONTENT
========================================================================== */


/* ==========================================================================
   BODY
========================================================================== */

body{

    background:#081B42;

}


/* ==========================================================================
   HERO
========================================================================== */

.hero-video{

    position:relative;

    width:100%;

    min-height:100vh;

    overflow:hidden;

    display:flex;

    align-items:center;

}


/* ==========================================================================
   VIDEO
========================================================================== */

.bg-video{

    position:absolute;

    top:50%;

    left:50%;

    width:100%;

    height:100%;

    object-fit:cover;

    transform:translate(-50%,-50%);

    z-index:-3;

}


/* ==========================================================================
   OVERLAY
========================================================================== */

.video-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(5,15,25,.82) 0%,
            rgba(5,15,25,.58) 45%,
            rgba(5,15,25,.42) 100%
        );

    z-index:-2;

}


/* ==========================================================================
   HERO CONTAINER
========================================================================== */

.hero-content{

    position:relative;

    width:100%;

    z-index:5;

}


/* ==========================================================================
   ROW
========================================================================== */

.hero-row{

    min-height:calc(100vh - 85px);

    display:flex;

    align-items:center;

}


/* ==========================================================================
   LEFT
========================================================================== */

.hero-left{

    color:#ffffff;

    padding-right:70px;

}


/* ==========================================================================
   BADGE
========================================================================== */

.hero-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

    color:#BF953F;

    font-size:.82rem;

    letter-spacing:2px;

    margin-bottom:28px;

}


/* ==========================================================================
   TITLE
========================================================================== */

.hero-left h1{

    font-size:4rem;

    line-height:1.15;

    font-weight:800;

    margin-bottom:28px;

    color:#ffffff;

    text-shadow:0 10px 30px rgba(0,0,0,.35);

}


/* ==========================================================================
   DESCRIPTION
========================================================================== */

.hero-left p{

    font-size:1.08rem;

    line-height:1.9;

    color:rgba(255,255,255,.78);

    max-width:600px;

    margin-bottom:38px;

}


/* ==========================================================================
   BUTTON
========================================================================== */

.btn-premium-large{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:16px 34px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.18);

    background:rgba(255,255,255,.08);

    color:#ffffff;

    font-weight:700;

    font-size:.95rem;

    letter-spacing:.8px;

    transition:.35s;

}


.btn-premium-large:hover{

    background:#BF953F;

    border-color:#BF953F;

    color:#ffffff;

    transform:translateY(-3px);

    box-shadow:0 20px 45px rgba(191,149,63,.35);

}


/* ==========================================================================
   RIGHT
========================================================================== */

.hero-right{

    display:flex;

    justify-content:flex-end;

    align-items:center;

}


/* ==========================================================================
   ANIMATION
========================================================================== */

.hero-left{

    animation:fadeHero .9s ease;

}

@keyframes fadeHero{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ==========================================================================
   PART 2
   LOGIN CARD
========================================================================== */

/* ===============================
   LOGIN WRAPPER
================================*/

.login-wrapper{

    width:100%;

    display:flex;

    justify-content:flex-end;

}


/* ===============================
   LOGIN CARD
================================*/

.login-card{

    width:100%;

    max-width:480px;

    padding:40px;

    border-radius:28px;

    background:rgba(18,28,38,.60);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.10);

    box-shadow:
        0 25px 60px rgba(0,0,0,.40);

}


/* ===============================
   LOGIN HEADER
================================*/

.login-header{

    text-align:center;

    margin-bottom:35px;

}

.login-logo{

    width:80px;

    margin:auto;

    margin-bottom:15px;

}

.login-company{

    color:#ffffff;

    font-size:15px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:12px;

}

.login-title{

    color:#ffffff;

    font-size:28px;

    font-weight:700;

    margin-bottom:10px;

}

.login-subtitle{

    color:rgba(255,255,255,.65);

    font-size:15px;

}


/* ===============================
   FORM
================================*/

.form-group{

    margin-bottom:22px;

}

.form-label{

    display:block;

    margin-bottom:8px;

    color:#ffffff;

    font-weight:600;

    font-size:14px;

}

.form-input{

    width:100%;

    height:56px;

    padding:0 20px;

    border-radius:16px;

    border:1px solid rgba(255,255,255,.10);

    background:rgba(255,255,255,.06);

    color:#ffffff;

    transition:.30s;

    font-size:15px;

}

.form-input::placeholder{

    color:rgba(255,255,255,.45);

}

.form-input:focus{

    border-color:#34d399;

    background:rgba(255,255,255,.10);

}


/* ===============================
   REMEMBER
================================*/

.form-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:28px;

}

.checkbox-label{

    display:flex;

    align-items:center;

    gap:8px;

    color:#d5d5d5;

    font-size:14px;

}

.checkbox-label input{

    accent-color:#34d399;

}

.forgot-link{

    color:#34d399;

    font-size:14px;

}

.forgot-link:hover{

    color:#ffffff;

}


/* ===============================
   BUTTON
================================*/

.btn-primary{

    width:100%;

    height:56px;

    border:none;

    border-radius:16px;

    font-size:16px;

    font-weight:700;

    color:#ffffff;

    cursor:pointer;

    background:linear-gradient(
        135deg,
        #059669,
        #34d399
    );

    transition:.30s;

}

.btn-primary:hover{

    transform:translateY(-2px);

    box-shadow:0 15px 35px rgba(52,211,153,.35);

}


/* ===============================
   DIVIDER
================================*/

.divider{

    display:flex;

    align-items:center;

    margin:28px 0;

    color:rgba(255,255,255,.60);

    font-size:14px;

}

.divider::before,

.divider::after{

    content:"";

    flex:1;

    height:1px;

    background:rgba(255,255,255,.10);

}

.divider span{

    padding:0 16px;

}


/* ===============================
   SOCIAL LOGIN
================================*/

.social-login{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-bottom:28px;

}

.social-btn{

    width:72px;

    height:60px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:16px;

    border:1px solid rgba(255,255,255,.10);

    background:rgba(255,255,255,.06);

    cursor:pointer;

    transition:.30s;

}

.social-btn:hover{

    transform:translateY(-3px);

    background:rgba(255,255,255,.12);

}

.social-btn svg{

    width:30px;

    height:30px;

}

.social-btn i{

    font-size:28px;

}

.fa-google{

    color:#4285F4;

}

.fa-apple{

    color:#ffffff;

}


/* ===============================
   FOOTER
================================*/

.login-footer{

    text-align:center;

    color:rgba(255,255,255,.65);

    font-size:14px;

}

.login-footer a{

    color:#34d399;

    font-weight:600;

}

.login-footer a:hover{

    color:#ffffff;

}

/* ==========================================================================
   PART 3
   ANIMATION • RESPONSIVE • FINISHING
========================================================================== */


/* ==========================================================================
   LOGIN ANIMATION
========================================================================== */

.login-card{

    animation:loginFade .8s ease;

}

@keyframes loginFade{

    from{

        opacity:0;

        transform:translateX(40px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}


/* ==========================================================================
   FLOAT EFFECT
========================================================================== */

.login-card{

    transition:.35s;

}

.login-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 35px 80px rgba(0,0,0,.45);

}


/* ==========================================================================
   GLASS EFFECT
========================================================================== */

.glass{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

}


/* ==========================================================================
   HERO TEXT EFFECT
========================================================================== */

.hero-left h1{

    animation:titleFade .9s ease;

}

.hero-left p{

    animation:titleFade 1.2s ease;

}

.btn-premium-large{

    animation:titleFade 1.5s ease;

}

@keyframes titleFade{

    from{

        opacity:0;

        transform:translateY(25px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/* ==========================================================================
   ICON EFFECT
========================================================================== */

.social-btn{

    overflow:hidden;

    position:relative;

}

.social-btn::before{

    content:"";

    position:absolute;

    width:0;

    height:100%;

    left:0;

    top:0;

    background:rgba(255,255,255,.08);

    transition:.35s;

}

.social-btn:hover::before{

    width:100%;

}


/* ==========================================================================
   INPUT EFFECT
========================================================================== */

.form-input{

    transition:
        border-color .30s,
        background .30s,
        box-shadow .30s;

}

.form-input:focus{

    box-shadow:
        0 0 0 4px rgba(52,211,153,.15);

}


/* ==========================================================================
   BUTTON EFFECT
========================================================================== */

.btn-primary{

    position:relative;

    overflow:hidden;

}

.btn-primary::before{

    content:"";

    position:absolute;

    left:-100%;

    top:0;

    width:100%;

    height:100%;

    background:

    linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.25),

        transparent

    );

    transition:.6s;

}

.btn-primary:hover::before{

    left:100%;

}


/* ==========================================================================
   DESKTOP
========================================================================== */

@media (min-width:1200px){

.hero-left{

padding-right:90px;

}

.login-card{

max-width:500px;

}

}


/* ==========================================================================
   LAPTOP
========================================================================== */

@media (max-width:1199px){

.hero-left{

padding-right:40px;

}

.hero-left h1{

font-size:3.2rem;

}

.login-card{

max-width:470px;

}

}


/* ==========================================================================
   TABLET
========================================================================== */

@media (max-width:991px){

.hero-video{

padding:70px 0;

min-height:auto;

}

.hero-row{

min-height:auto;

}

.hero-left{

padding-right:0;

text-align:center;

margin-bottom:60px;

}

.hero-left p{

margin:auto auto 35px;

}

.hero-right{

justify-content:center;

}

.login-wrapper{

justify-content:center;

}

.login-card{

max-width:550px;

}

}


/* ==========================================================================
   MOBILE
========================================================================== */

@media (max-width:768px){

.hero-left h1{

font-size:2.3rem;

line-height:1.25;

}

.hero-left p{

font-size:.96rem;

}

.login-card{

padding:28px;

border-radius:22px;

}

.login-title{

font-size:24px;

}

.form-input{

height:52px;

}

.btn-primary{

height:52px;

}

.social-btn{

width:65px;

height:56px;

}

}


/* ==========================================================================
   SMALL MOBILE
========================================================================== */

@media (max-width:576px){

.hero-video{

padding:40px 0;

}

.hero-left h1{

font-size:2rem;

}

.hero-left p{

font-size:.92rem;

}

.btn-premium-large{

width:100%;

justify-content:center;

}

.login-card{

    width:100%;
    max-width:520px;

    max-height:85vh;
    overflow-y:auto;

    padding:38px;

}

.login-company{

font-size:13px;

}

.login-title{

font-size:22px;

}

.login-subtitle{

font-size:13px;

}

.form-row{

flex-direction:column;

gap:12px;

align-items:flex-start;

}

.social-login{

gap:14px;

}

.social-btn{

width:58px;

height:52px;

}

.social-btn svg{

width:24px;

height:24px;

}

.social-btn i{

font-size:22px;

}

}


/* ==========================================================================
   EXTRA SMALL
========================================================================== */

@media (max-width:380px){

.hero-left h1{

font-size:1.7rem;

}

.login-card{

    width:100%;
    max-width:520px;

    max-height:85vh;
    overflow-y:auto;

    padding:38px;

}
}


/* ==========================================================================
   END
========================================================================== */


/* Desktop only */
@media (min-width:992px){

    .hero-left{
        position:relative;
        top:-50px;
    }

    .hero-tagline{
    margin-bottom:40px;
}

}


