/* ===== BODY ===== */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #33C3CC;

    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 100vh;
    margin: 0;
}

/* ===== WRAPPER ===== */
.login-wrapper {
    /*background: rgba(255, 255, 255, 0.15);*/
    padding: 50px;
    border-radius: 15px;
    
    width: 100%;             
    display: flex;            
    justify-content: center;
}

/* ===== CARD LOGIN ===== */
.login-box {
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    padding: 60px 30px 30px;
    border-radius: 0px;
    /*box-shadow: 0 15px 40px rgba(0,0,0,0.2);*/
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.logo-wrapper {
    text-align: center;
    margin-bottom: 5px;
}

.logo-login {
    width: 150px;   /* atur sesuai selera */
    height: auto;
}

/* ===== TITLE ===== */
.login-box h3 {
    text-align: center;
    margin-top: 0px; 
    margin-bottom: 30px;
    font-weight: 600;
}

/* ===== INPUT ===== */
.login-box input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
}

/* ===== INPUT GROUP ICON ===== */
.input-group-text {
    border-radius: 8px 0 0 8px;
}

/* ===== BUTTON LOGIN ===== */
.btn-login {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #2575fc, #6a11cb);
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
}

.btn-login:hover {
    opacity: 0.9;
}

/* ===== ERROR MESSAGE ===== */
.error {
    background: #ffe5e5;
    color: #d8000c;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 576px) {
    .login-wrapper {
        padding: 20px;
    }

    .login-box {
        max-width: 100%;
        padding: 40px 20px;
    }

    .login-box h3 {
        font-size: 18px;
    }
}

/* ===== BIARKAN BUTTON ICON BOOTSTRAP ===== */
.input-group .btn {
    width: auto;
}

/* ===== MATIKAN ICON PASSWORD BAWAAN EDGE ===== */
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none !important;
    width: 0;
    height: 0;
}

/* ===== MATIKAN DECORATION CHROME / SAFARI ===== */
input[type="password"]::-webkit-textfield-decoration-container {
    display: none !important;
}

/* ===== HILANGKAN STYLE BAWAAN BROWSER ===== */
input[type="password"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}