/* ================================
   RESET & GLOBAL
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    height: 100vh;
}

/* ================================
   BACKGROUND
================================ */
.login-wrapper {
    height: 100vh;
    width: 100%;
    background: 
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url("../img/bg-login.jpg") no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================================
   LOGIN BOX
================================ */
.login-box {
    width: 360px;
    background: #ffffff;
    border-radius: 10px;
    padding: 30px 28px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    text-align: center;
}

/* ================================
   TITLE
================================ */
.login-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #222;
}

/* ================================
   INPUT GROUP
================================ */
.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-group input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border 0.2s;
}

.input-group input:focus {
    border-color: #FDB934;
}

/* ================================
   ICON (FONT AWESOME)
================================ */
.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #999;
    pointer-events: none;
}

/* ================================
   LOGIN BUTTON
================================ */
.btn-login {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(90deg, #FFD56A, #FDB934);
    transition: opacity 0.3s, transform 0.1s;
}

.btn-login:hover {
    opacity: 0.9;
}

.btn-login:active {
    transform: scale(0.98);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 420px) {
    .login-box {
        width: 90%;
        padding: 25px 20px;
    }
}
