/*==================================================
    GOOGLE FONT
==================================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html,
body{
    width:100%;
    height:100%;
    overflow-x:hidden;
}

body{
    background:linear-gradient(135deg,#C9B9AC 0%,#D5C8BE 55%,#DED4CB 100%);
    position:relative;
}

/*==================================================
    BACKGROUND DECORATION
==================================================*/

body::before{
    content:"";
    position:fixed;
    width:520px;
    height:520px;
    border-radius:50%;
    background:rgba(255,255,255,.13);
    top:-180px;
    left:-170px;
    z-index:-2;
}

body::after{
    content:"";
    position:fixed;
    width:480px;
    height:480px;
    border-radius:50%;
    background:rgba(255,255,255,.10);
    bottom:-170px;
    right:-170px;
    z-index:-2;
}

/*==================================================
    MAIN WRAPPER
==================================================*/

.main-wrapper{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
}

/*==================================================
    CONTAINER
==================================================*/

.container-fluid{
    width:100%;
    padding-left:40px;
    padding-right:40px;
}

.row{
    min-height:100vh;
    align-items:center;
}

/*==================================================
    SVG WAVES
==================================================*/

.wave-top,
.wave-bottom{
    position:fixed;
    width:100%;
    left:0;
    z-index:-1;
    opacity:.12;
    pointer-events:none;
}

.wave-top{
    top:0;
}

.wave-bottom{
    bottom:0;
    opacity:.18;
}

/*==================================================
    DOTS
==================================================*/

.dots{
    position:fixed;
    width:170px;
    height:170px;

    background-image:
        radial-gradient(#ffffff 1.5px,transparent 1.5px);

    background-size:16px 16px;

    opacity:.35;

    z-index:-1;
}

.dots.left{
    top:90px;
    left:60px;
}

.dots.right{
    bottom:90px;
    right:70px;
}

/*==================================================
    FLOATING SHAPES
==================================================*/

.shape{
    position:fixed;
    border-radius:50%;
    animation:float 8s ease-in-out infinite;
}

.shape.one{
    width:55px;
    height:55px;
    right:15%;
    top:18%;
    background:#FF6A3D;
    opacity:.18;
}

.shape.two{
    width:30px;
    height:30px;
    left:10%;
    bottom:18%;
    background:#F9A14D;
    opacity:.28;
}

.shape.three{
    width:14px;
    height:14px;
    left:18%;
    top:42%;
    background:#ffffff;
    opacity:.7;
}

.circle{
    position:fixed;
    border-radius:50%;
    z-index:-2;
}

.circle1{
    width:260px;
    height:260px;
    top:-70px;
    left:-60px;
    background:rgba(255,255,255,.08);
}

.circle2{
    width:380px;
    height:380px;
    bottom:-150px;
    right:-120px;
    background:rgba(255,255,255,.08);
}

/*==================================================
    LEFT PANEL
==================================================*/

.left-panel{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px;
    height:100%;
}

.brand-logo{
    width:180px;
    margin-bottom:30px;
    transition:.3s;
}

.brand-logo:hover{
    transform:scale(1.04);
}

.brand h1{
    font-size:52px;
    font-weight:800;
    color:#563C30;
    margin-bottom:12px;
}

.brand p{
    font-size:20px;
    color:#6F5C52;
}

.illustration{
    margin-top:45px;
}

.illustration img{
    width:100%;
    max-width:380px;
    height:auto;
}

/*==================================================
    FLOAT ANIMATION
==================================================*/

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }

}

/*==================================================
    RESPONSIVE LAYOUT
==================================================*/

@media (max-width:992px){

    .left-panel{
        display:none;
    }

    .container-fluid{
        padding-left:20px;
        padding-right:20px;
    }

}

@media (max-width:576px){

    .container-fluid{
        padding-left:15px;
        padding-right:15px;
    }

}
/*==================================================
    LOGIN CARD
==================================================*/

.login-card{
    width:100%;
    max-width:460px;
    background:#ffffff;
    border-radius:30px;
    padding:40px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    transition:.35s;
    margin:20px auto;
}

.login-card:hover{
    transform:translateY(-5px);
    box-shadow:0 35px 70px rgba(0,0,0,.18);
}

/*==================================================
    LOGO
==================================================*/
.logo-box{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 25px;
}
.mobile-logo{
    width: 90px;
    height: auto;
    display: block;
}

/*==================================================
    TITLE
==================================================*/

.login-title{
    text-align:center;
    font-size:44px;
    font-weight:800;
    color:#563C30;
    margin-bottom:8px;
}

.login-subtitle{
    text-align:center;
    color:#8B8078;
    font-size:16px;
    margin-bottom:30px;
}

/*==================================================
    LABEL
==================================================*/

label{
    font-size:15px;
    font-weight:600;
    color:#56463C;
    margin-bottom:8px;
}

/*==================================================
    INPUT GROUP
==================================================*/

.input-group{
    border-radius:15px;
    overflow:hidden;
    background:#F8F8F8;
    box-shadow:0 8px 18px rgba(0,0,0,.05);
    transition:.30s;
}

.input-group:hover{
    transform:translateY(-2px);
}

.input-group:focus-within{
    box-shadow:0 12px 30px rgba(255,106,61,.20);
}

/*==================================================
    ICONS
==================================================*/

.input-group-text{
    width:55px;
    border:none;
    background:#F8F8F8;
    color:#FF6A3D;
    justify-content:center;
}

.password-toggle{
    cursor:pointer;
}

.password-toggle:hover{
    background:#FFF2EC;
}

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

.form-control{
    border:none;
    background:#F8F8F8;
    height:56px;
    font-size:15px;
    padding-left:15px;
}

.form-control:focus{
    box-shadow:none;
    background:#F8F8F8;
}

.form-control::placeholder{
    color:#AAAAAA;
}

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

.form-check-label{
    color:#777;
    font-size:14px;
}

.form-check-input:checked{
    background:#FF6A3D;
    border-color:#FF6A3D;
}

/*==================================================
    LINK
==================================================*/

a{
    text-decoration:none;
    color:#FF6A3D;
    transition:.30s;
    font-size:14px;
}

a:hover{
    color:#F25A2A;
}

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

.login-btn{
    height:58px;
    border:none;
    border-radius:15px;
    background:linear-gradient(90deg,#FF6A3D,#F65A28);
    color:#fff;
    font-size:20px;
    font-weight:700;
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.login-btn::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    left:-120%;
    top:0;
    background:rgba(255,255,255,.25);
    transform:skewX(-30deg);
    transition:.7s;
}

.login-btn:hover::before{
    left:120%;
}

.login-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 20px 35px rgba(255,106,61,.35);
}

/*==================================================
    POWERED BY
==================================================*/

.powered{
    margin-top:35px;
    text-align:center;
    color:#777;
    font-size:14px;
}

.powered img{
    width:140px;
    margin-top:10px;
}

/*==================================================
    ALERT
==================================================*/

.alert{
    border-radius:12px;
}

/*==================================================
    DESKTOP
==================================================*/

@media (min-width:1200px){

.login-card{
    max-width:470px;
}

}

/*==================================================
    LAPTOP
==================================================*/

@media (max-width:1366px){

.brand h1{
    font-size:46px;
}

.brand p{
    font-size:18px;
}

.illustration img{
    max-width:330px;
}

.login-card{
    max-width:430px;
    padding:35px;
}

.login-title{
    font-size:38px;
}

}

/*==================================================
    TABLET
==================================================*/

@media (max-width:992px){

.row{
    min-height:auto;
}

.login-card{
    max-width:500px;
    margin:50px auto;
}

}

/*==================================================
    MOBILE
==================================================*/

@media (max-width:768px){

.login-card{
    padding:30px;
    border-radius:20px;
}

.mobile-logo{
    width:140px;
}

.login-title{
    font-size:34px;
}

.login-subtitle{
    font-size:15px;
}

.form-control{
    height:52px;
}

.login-btn{
    height:52px;
    font-size:18px;
}

}

/*==================================================
    SMALL MOBILE
==================================================*/

@media (max-width:480px){

.login-card{
    padding:22px;
    margin:20px auto;
}

.login-title{
    font-size:28px;
}

.mobile-logo{
    width:120px;
}

.form-control{
    height:50px;
    font-size:14px;
}

.input-group-text{
    width:48px;
}

.login-btn{
    height:50px;
    font-size:17px;
}

.powered img{
    width:120px;
}

}

/*==================================================
    FIREFOX FIX
==================================================*/

html{
    scroll-behavior:smooth;
}

body{
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

svg{
    display:block;
}