*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:
    linear-gradient(rgba(5,10,30,0.82), rgba(5,10,30,0.82)),
    url('images/bg.jpg');
    background-size:cover;
    background-position:center;
    padding:30px;
}

.main-container{
    width:100%;
    max-width:1100px;
    display:flex;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 50px rgba(0,0,0,0.45);
    background:#fff;
}

/* LEFT PANEL */

.left-panel{
    width:45%;
    background:linear-gradient(135deg,#071952,#0B666A);
    color:#fff;
    padding:60px 40px;
    position:relative;
}

.left-panel::before{
    content:'';
    position:absolute;
    top:-80px;
    right:-80px;
    width:220px;
    height:220px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
}

.left-panel::after{
    content:'';
    position:absolute;
    bottom:-100px;
    left:-100px;
    width:260px;
    height:260px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
}

.logo{
    width:280px;
    margin-bottom:30px;
    background:#fff;
    padding:10px;
    border-radius:15px;
}

.left-panel h1{
    font-size:34px;
    line-height:1.4;
    margin-bottom:20px;
    font-weight:700;
   	color:#e4e4e4;
}

.left-panel p{
    font-size:15px;
    line-height:28px;
    color:#e4e4e4;
}

/* RIGHT PANEL */

.right-panel{
    width:55%;
    background:#ffffff;
    padding:50px;
}

.tab-group{
    list-style:none;
    display:flex;
    margin-bottom:35px;
    background:#f1f4f9;
    border-radius:50px;
    padding:5px;
}

.tab-group li{
    width:50%;
    text-align:center;
}

.tab-group li a{
    display:block;
    padding:14px;
    text-decoration:none;
    border-radius:50px;
    color:#555;
    font-weight:600;
    transition:0.4s;
}

.tab-group .active a{
    background:linear-gradient(135deg,#0B666A,#35A29F);
    color:#fff;
    box-shadow:0 4px 15px rgba(0,0,0,0.15);
}

h3{
    color:#071952;
    margin-bottom:30px;
    font-size:24px;
    line-height:36px;
    text-align:center;
}

.field-wrap{
    margin-bottom:22px;
}

.field-wrap input{
    width:100%;
    padding:16px 18px;
    border:1px solid #d7d7d7;
    border-radius:12px;
    background:#f8fafc;
    font-size:15px;
    transition:0.3s;
    outline:none;
}

.field-wrap input:focus{
    border-color:#0B666A;
    background:#fff;
    box-shadow:0 0 0 4px rgba(11,102,106,0.12);
}

.button{
    width:100%;
    border:none;
    padding:16px;
    border-radius:14px;
    background:linear-gradient(135deg,#071952,#0B666A);
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:0.4s;
    margin-top:10px;
}

.button:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(0,0,0,0.18);
}

#login{
    display:none;
}

.forgot{
    text-align:right;
    margin-top:10px;
}

.forgot a{
    text-decoration:none;
    color:#0B666A;
    font-size:14px;
    font-weight:500;
}

/* MOBILE */

@media(max-width:900px){

    .main-container{
        flex-direction:column;
    }

    .left-panel,
    .right-panel{
        width:100%;
    }

    .left-panel{
        text-align:center;
    }

    .left-panel h1{
        font-size:28px;
    }

    .right-panel{
        padding:35px 25px;
    }
}