@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');
body{
    font-family: 'Poppins', sans-serif;
    background: #ececec;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}
.box-area{
    width: 930px;
    max-width: 100%;
}
.right-box{
    padding: 40px 30px 40px 40px;
}
.left-box {
    background-image: url('../img/vector.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}
.left-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
    border-radius: 20px;
}
.left-box-content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 40px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}
::placeholder{
    font-size: 16px;
}

.login-btn {
    background: #3b5998;
    border: none;
    transition: all 0.3s;
}
.login-btn:hover {
    background: #2d4373;
    transform: translateY(-2px);
}
.forgot-link {
    color: #3b5998;
    text-decoration: none;
}
.forgot-link:hover {
    text-decoration: underline;
}
.register-link {
    color: #3b5998;
    font-weight: 500;
    text-decoration: none;
}
.register-link:hover {
    text-decoration: underline;
}
@media only screen and (max-width: 768px){
    .box-area{
        margin: 0 10px;
    }
    .left-box{
        height: 200px;
        border-radius: 20px;
    }
    .left-box::before {
        border-radius: 20px;
    }
    .right-box{
        padding: 20px;
    }
}