
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login {
    width: 80%;
    height: 80vh;
    background: #ffffff;
    display: flex;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid black;
}

/* LEFT SIDE */
.left-box {
    width: 50%;
    padding: 60px;
    background: linear-gradient(to bottom, #ffffff, #fff6d6);
}

.left-box h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.subtitle-login {
    color: #666;
    margin-bottom: 30px;
}

form label {
    font-size: 14px;
    color: #444;
}

input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 30px;
    background: #f3f3f3;
    margin: 8px 0 18px 0;
}

.btn {
    width: 100%;
    padding: 14px;
    background: #ffd34e;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
}

.btn:hover {
    background: #ffca2c;
}

.other-log {
    margin-top: 20px;
}

.btn-outline {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 30px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
}

.btn-outline:hover {
    background: #f2f2f2;
}

.footer-login {
    margin-top: 25px;
    color: #555;
    font-size: 14px;
}

.footer-login a {
    text-decoration: none;
    font-weight: 600;
}

/* RIGHT SIDE */
.right-box {
    width: 50%;
    background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692');
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay-text{
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0,0,0,0.4);
    padding: 20px 25px;
    border-radius: 20px;
    color: #fff;
}

.overlay-text h3 {
    font-size: 26px;
    margin-bottom: 5px;
}
