/* ====== GENERAL ====== */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #1e3555;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* ====== LOGIN CONTAINER ====== */
.login-container {
    background: white;
    width: 330px; /* DIPERKECIL */
    border-radius: 12px;
    padding: 25px 22px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
    text-align: center;
}

/* ====== LOGO AREA ====== */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px; /* memberi jarak dengan form */
}

.logo-img {
    width: 65px; /* DIPERKECIL */
    height: auto;
    margin-bottom: 8px; /* jarak kecil ke tulisan */
}

/* Judul */
.logo h2 {
    margin: 0;
    font-size: 20px;
    color: #1e3555;
}

/* ====== INPUT GROUP ====== */
.input-group {
    display: flex;
    align-items: center;
    background: #e9e9e9;
    padding: 10px;
    margin: 12px 0;
    border-radius: 6px;
}

.input-group .icon {
    margin-right: 10px;
    font-size: 18px;
}

.input-group input {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    font-size: 14px;
}

/* ====== BUTTON ====== */
.btn-login {
    width: 100%;
    background: #ff6600;
    border: none;
    padding: 12px;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    margin-top: 10px;
    transition: 0.2s;
}

.btn-login:hover {
    background: #e65c00;
}

/* ====== LINK ====== */
.forgot-password {
    display: block;
    margin-top: 12px;
    color: #0077cc;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* ====== ALERT ====== */
.alert-danger, .alert-success {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 10px;
}

.alert-danger {
    background: #ffb3b3;
    color: #700;
}

.alert-success {
    background: #b3ffb3;
    color: #005500;
}
