/*==========================
  GOOGLE FONT
===========================*/

body{
    margin:0;
    padding:0;
    font-family:'Poppins',sans-serif;
    background:#F5EFE4;
    color:#1B1108;
}

/*==========================
  PAGE
===========================*/

.login-page{
    width:100%;
    min-height:100vh;
    background:#F5EFE4;
}

/*==========================
  LEFT SIDE
===========================*/

.left-side{
    position:relative;
    width:100%;
    height:100vh;
    background:url('https://images.unsplash.com/photo-1517705008128-361805f42e86?auto=format&fit=crop&w=1200&q=80') center center;
    background-size:cover;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(27,17,8,.70);
}

.left-content{
    position:relative;
    z-index:10;
    width:80%;
    color:#fff;
}

.left-content h1{
    font-family:'Fraunces',serif;
    font-size:55px;
    letter-spacing:4px;
    margin-bottom:20px;
}

.left-content h2{
    font-family:'Fraunces',serif;
    font-size:42px;
    margin-bottom:15px;
}

.left-content p{
    font-size:17px;
    line-height:30px;
    color:#ddd;
}

.left-bottom{
    margin-top:70px;
}

.left-bottom .item{
    margin-bottom:30px;
    border-left:3px solid #C89B3C;
    padding-left:20px;
}

.left-bottom h3{
    color:#fff;
    font-size:22px;
    margin-bottom:6px;
}

.left-bottom p{
    margin:0;
    color:#d6d6d6;
}

/*==========================
  RIGHT SIDE
===========================*/

.login-wrapper{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:100vh;
    padding:40px;
}

.login-card{
    width:100%;
    max-width:520px;
    background:#fff;
    border-radius:20px;
    padding:45px;
    box-shadow:0 15px 45px rgba(0,0,0,.12);
    border:1px solid #eadfc9;
}

/*==========================
  HEADINGS
===========================*/

.login-card h2{
    font-family:'Fraunces',serif;
    color:#6B4423;
    font-size:40px;
    margin-bottom:8px;
}

.login-card p{
    color:#777;
}

/*==========================
  LABELS
===========================*/

label{
    font-weight:600;
    margin-bottom:8px;
    display:block;
    color:#3D2612;
}

/*==========================
  INPUT
===========================*/

.form-control{
    height:58px;
    border-radius:12px;
    border:1px solid #d9cdb8;
    padding-left:18px;
    font-size:15px;
    transition:.3s;
    box-shadow:none!important;
}

.form-control:focus{
    border-color:#6B4423;
    box-shadow:0 0 0 4px rgba(107,68,35,.12)!important;
}

/*==========================
  REMEMBER
===========================*/

.remember-area{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    font-size:14px;
}

.remember-area a{
    color:#6B4423;
    text-decoration:none;
    font-weight:600;
}

.remember-area a:hover{
    color:#C89B3C;
}

/*==========================
  LOGIN BUTTON
===========================*/

.login-btn{
    width:100%;
    height:56px;
    border:none;
    border-radius:50px;
    background:#6B4423;
    color:#fff;
    font-size:17px;
    font-weight:600;
    transition:.35s;
}

.login-btn:hover{
    background:#3D2612;
    transform:translateY(-2px);
}

/*==========================
  DIVIDER
===========================*/

.divider{
    position:relative;
    text-align:center;
    margin:35px 0;
}

.divider::before{
    content:'';
    position:absolute;
    left:0;
    top:50%;
    width:100%;
    height:1px;
    background:#ddd;
}

.divider span{
    position:relative;
    background:#fff;
    padding:0 20px;
    color:#888;
}

/*==========================
  GOOGLE BUTTON
===========================*/

.google-btn{
    width:100%;
    height:55px;
    border-radius:50px;
    background:#fff;
    border:1px solid #ddd;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    font-weight:600;
    transition:.3s;
}

.google-btn:hover{
    background:#f8f8f8;
    border-color:#6B4423;
}

/*==========================
  BOTTOM
===========================*/

.bottom-text{
    margin-top:30px;
    text-align:center;
    color:#666;
}

.bottom-text a{
    text-decoration:none;
    color:#6B4423;
    font-weight:600;
}

.bottom-text a:hover{
    color:#C89B3C;
}

/*==========================
  ALERT
===========================*/

.alert{
    border-radius:12px;
}

/*==========================
  CHECKBOX
===========================*/

.form-check-input:checked{
    background:#6B4423;
    border-color:#6B4423;
}

/*==========================
  MOBILE
===========================*/

@media(max-width:991px){

.left-side{
    display:none;
}

.login-wrapper{
    padding:20px;
}

.login-card{
    padding:30px;
}

.login-card h2{
    font-size:32px;
}

}

@media(max-width:576px){

.login-card{
    border-radius:15px;
    padding:25px;
}

.login-card h2{
    font-size:28px;
}

.form-control{
    height:52px;
}

.login-btn{
    height:52px;
}

.google-btn{
    height:52px;
}

.remember-area{
    flex-direction:column;
    gap:10px;
    align-items:flex-start;
}

}