/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* BACKGROUND */
body {
    background: linear-gradient(135deg, #071d31, #2575fc);
}

/* CONTAINER */
.container-login {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CARD */
.login-box {
    width: 900px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* LEFT */
.login-left {
    width: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-left img {
    width: auto;          /* jangan pakai % */
    height: 450px;        /* BESARKAN DI SINI */
    max-width: 200%;      /* supaya tidak keluar box */
}

/* RIGHT */
.login-right {
    width: 50%;
    padding: 50px;
}

.login-title {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: bold;
    text-align: center;
}

/* INPUT UMUM (EMAIL) */
.form-control {
    width: 100%;
    height: 50px;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    background: #f0f3f7;
    box-shadow: none;
}


/* ===== KHUSUS PASSWORD ===== */
.input-group {
    margin-bottom: 20px;
    display: flex;
}

/* FOCUS */
.form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: #071d31;
}

.input-group .form-control:focus + .input-group-text {
    border-color: #071d31;
}

/* BUTTON */
.btn-login {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 25px;
    background: #071d31;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.btn-login:hover {
    background: #0d2b55;
}

/* LINK */
.login-link {
    margin-top: 15px;
    text-align: center;
}

/* INPUT GROUP */
.input-group {
    position: relative;
    margin-bottom: 20px;
}

/* PAKSA PASSWORD FULL ROUNDED */
.input-group .form-control {
    border-radius: 50px !important;
    padding-right: 50px;
}

/* HILANGKAN STYLE SPLIT BOOTSTRAP */
.input-group-text {
    border: none !important;
    background: transparent !important;
}

/* ICON DI DALAM INPUT */
.input-group .input-group-text {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}