
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:linear-gradient(135deg,#ffe5ef,#fff,#ffd6e7);
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

.login-container{
    width:92%;
    max-width:1300px;
    height:720px;
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    display:flex;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

/* LEFT SIDE */

.left-side{
    width:50%;
    background:linear-gradient(135deg,#ff4f81,#ff8eb1);
    color:white;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:60px;
    text-align:center;
}

.left-side h1{
    font-size:50px;
    font-family:'Playfair Display',serif;
    margin-bottom:25px;
}

.quote{
    font-size:18px;
    line-height:32px;
    margin-bottom:35px;
    opacity:.95;
}

.left-side img{
    width:420px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.25);
    transition:.4s;
}

.left-side img:hover{
    transform:scale(1.05);
}

/* RIGHT SIDE */

.right-side{
    width:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#fff;
}

.login-box{
    width:420px;
}

.login-box h2{
    font-size:40px;
    color:#ff2e63;
    margin-bottom:10px;
}

.login-box p{
    color:#777;
    margin-bottom:30px;
}

/* INPUT */

.input-box{
    display:flex;
    align-items:center;
    border:1px solid #ddd;
    border-radius:15px;
    padding:15px;
    margin-bottom:20px;
    transition:.3s;
}

.input-box:hover{
    border-color:#ff4f81;
    box-shadow:0 0 12px rgba(255,79,129,.25);
}

.input-box i{
    color:#ff4f81;
    font-size:18px;
    margin-right:12px;
}

.input-box input{
    width:100%;
    border:none;
    outline:none;
    font-size:16px;
}

/* REMEMBER */

.remember{
    display:flex;
    justify-content:space-between;
    margin-bottom:25px;
    font-size:14px;
}

.remember a{
    color:#ff2e63;
    text-decoration:none;
}

.remember a:hover{
    text-decoration:underline;
}

/* BUTTON */

.login-btn{
    width:100%;
    padding:15px;
    border:none;
    border-radius:15px;
    background:#ff2e63;
    color:white;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.login-btn:hover{
    background:#ff4f81;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(255,79,129,.35);
}

/* SOCIAL */

.social{
    text-align:center;
    margin-top:30px;
}

.social p{
    margin-bottom:15px;
}

.icons i{
    width:48px;
    height:48px;
    line-height:48px;
    border-radius:50%;
    background:#ffe4ec;
    color:#ff2e63;
    margin:0 8px;
    font-size:20px;
    transition:.3s;
    cursor:pointer;
}

.icons i:hover{
    background:#ff2e63;
    color:#fff;
    transform:translateY(-5px);
}

/* DEMO LOGIN */

.credentials{
    margin-top:35px;
    background:#fff4f7;
    border-radius:15px;
    padding:20px;
    text-align:center;
    border:1px solid #ffd1df;
}

.credentials h4{
    color:#ff2e63;
    margin-bottom:10px;
}

.credentials p{
    margin:8px 0;
}

/* RESPONSIVE */

@media(max-width:900px){

.login-container{
    flex-direction:column;
    height:auto;
}

.left-side,
.right-side{
    width:100%;
}

.left-side{
    padding:40px;
}

.left-side h1{
    font-size:38px;
}

.left-side img{
    width:280px;
}

.login-box{
    width:90%;
    padding:40px 0;
}

}
 
