*{margin:0;padding:0;box-sizing:border-box;font-family:'Inter',sans-serif;}

body{
    height:100vh;
    display:flex;
}

/* LEFT SLIDER */
.left {
    width: 65%;
    height: 100vh; /* MUST */
    position: relative;
    overflow: hidden;
}

.slider {
    height: 100%;
    position: relative;
}

/* .left img{
    width:100%;
    height:100vh;
    object-fit:cover;
} */

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* IMPORTANT */
}

/* TEXT OVER IMAGE */
.overlay{
    position:absolute;
    bottom:40px;
    left:40px;
    color:#fff;
    font-size:18px;
    letter-spacing:1px;
    background:rgba(0,0,0,0.3);
    padding:10px 15px;
}

/* RIGHT LOGIN */
.right{
    width:35%;
    background:#f8f9fa;
    display:flex;
    justify-content:center;
    align-items:center;
}

.login-box{
    width:80%;
}

/* LOGO */
.logo{
    text-align:center;
    margin-bottom:20px;
}

.logo img{
    width:70px;
}

h2{
    text-align:center;
    color:#1b5e20;
    margin-bottom:5px;
}

p{
    text-align:center;
    font-size:13px;
    color:#666;
    margin-bottom:20px;
}

/* INPUT */
.input-group{
    margin-bottom:15px;
}

.input-group label{
    font-size:12px;
    color:#555;
}

.input-group input{
    width:100%;
    padding:10px;
    border:1px solid #ddd;
    border-radius:6px;
    margin-top:5px;
}

/* BUTTON */
.btn-login{
    width:100%;
    padding:12px;
    background:#0d4d2b;
    color:#fff;
    border:none;
    border-radius:6px;
    font-weight:600;
    margin-top:10px;
}

.btn-login:hover{
    background:#1b5e20;
}

/* FORGOT */
.forgot{
    text-align:right;
    font-size:12px;
    margin-top:5px;
}

.forgot a{
    color:#1b5e20;
    text-decoration:none;
}

/* FOOTER */
.footer{
    position:absolute;
    bottom:0;
    width:100%;
    background:#0d4d2b;
    color:#fff;
    font-size:11px;
    padding:8px 20px;
    display:flex;
    justify-content:space-between;
    z-index: 2;
}

/* RESPONSIVE */
@media(max-width:900px){
    .left{display:none;}
    .right{width:100%;}
}
/* Slider */
/* .left{
    width:65%;
    position:relative;
    overflow:hidden;
}

.slider{
    height:100vh;
    position:relative;
} */

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* ARROWS */
.nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:30px;
    color:#fff;
    background:rgba(0,0,0,0.4);
    padding:10px;
    cursor:pointer;
    border-radius:50%;
}

/* .prev{ left:20px; }
.next{ right:20px; } */

/* DOTS */
.dots{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:8px;
}

.dot{
    width:10px;
    height:10px;
    background:#ccc;
    border-radius:50%;
    cursor:pointer;
}

.dot.active{
    background:#fff;
}

/* OVERLAY */
.overlay{
    position:absolute;
    bottom:40px;
    left:40px;
    color:#fff;
    background:rgba(0,0,0,0.3);
    padding:10px 15px;
}