* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    height: 100vh;
    background: url("../img/photo.jpg") no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MAIN CARD */
.login-card {
    width: 900px;
    height: 480px;
    background: #fff;
    border-radius: 18px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

/* LEFT */
.login-left {
    width: 50%;
    padding: 50px;
}

.login-left h2 {
    margin-bottom: 30px;
}

.form-group input {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #f5f7fa;
}

.options {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 25px;
}

.options a {
    color: #4a6cf7;
    text-decoration: none;
}

button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #4a6cf7;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #3a5ae0;
}

.signup {
    text-align: center;
    margin-top: 20px;
}

.signup a {
    color: #4a6cf7;
    text-decoration: none;
}

/* RIGHT */
.login-right {
    width: 50%;
    background: linear-gradient(135deg, #4a6cf7, #6f8cff);
    color: white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-right h3 {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
}

.login-right p {
    opacity: 0.9;
    text-align: center;
}
