* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Adobe Clean', 'Segoe UI', Roboto, sans-serif; }

body {
    background: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&q=80&w=2070') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
}

.brand-box {
    color: white;
    max-width: 400px;
}

.brand-box img {
    width: 160px;
    margin-bottom: 15px;
    display: block;
}

.brand-box h1 {
    font-size: 26px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.login-card {
    background: white;
    width: 440px;
    min-height: 520px;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
}

.login-card h2 { font-size: 32px; font-weight: 700; margin-bottom: 8px; color: #2c2c2c; }
.login-card p { font-size: 15px; margin-bottom: 30px; color: #6e6e6e; }
.login-card p a { color: #0265dc; text-decoration: none; font-weight: 600; }
.login-card p a:hover { text-decoration: underline; }

/* Styling Input */
.form-group { margin-bottom: 20px; position: relative; }
.form-group label { display: block; font-size: 14px; margin-bottom: 8px; color: #4b4b4b; font-weight: 600; }
.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #919191;
    border-radius: 4px;
    font-size: 16px;
    transition: border 0.2s;
}
.form-group input:focus { outline: none; border: 2px solid #0265dc; padding: 11px 14px; }

/* Button Sign In */
.btn-container { margin-top: auto; display: flex; justify-content: flex-end; }
.btn-action {
    background: #0265dc;
    color: white;
    border: none;
    padding: 10px 28px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}
.btn-action:hover { background: #0054ff; }

/* Overlay Sukses */
#success-msg {
    display: none;
    text-align: center;
    margin-top: 50px;
}
.check-icon { width: 70px; margin-bottom: 25px; opacity: 0.8; }

/* Responsif */
@media (max-width: 900px) {
    .wrapper { flex-direction: column; justify-content: center; padding: 20px; }
    .brand-box { display: none; } /* Mobile biasanya hanya form */
    .login-card { width: 100%; max-width: 400px; min-height: auto; }
}