/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: url('https://images.unsplash.com/photo-1522199710521-72d69614c702?auto=format&fit=crop&w=1950&q=80') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Login Box */
.login-box {
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    width: 350px;
    color: #fff;
    text-align: center;
}

/* Header */
.login-box h2 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Input Field */
.input-field {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-field input {
    width: 100%;
    padding: 12px 40px 12px 20px;
    border-radius: 25px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 14px;
}

.input-field input::placeholder {
    color: #e0e0e0;
}

/* Ikon */
.input-field i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}

/* Tombol Login */
.login-btn {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    background: linear-gradient(90deg, #F4511E, #FB8C00);
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-btn:hover {
    background: linear-gradient(90deg, #FB8C00, #FFA726);
}

/* Links */
.login-box .extra-links {
    margin-top: 1rem;
    font-size: 14px;
}

.login-box a {
    color: #FFD180;
    text-decoration: none;
}

.login-box a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 480px) {
    .login-box {
        width: 90%;
        padding: 2rem;
    }
}


/* Input Field */
.input-field {
    position: relative;
    margin-bottom: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.input-field input {
    width: calc(100% - 40px); /* Kurangi padding kanan & kiri */
    padding: 12px 20px;
    border-radius: 25px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 14px;
    box-sizing: border-box;
}

/* Ikon */
.input-field i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    pointer-events: none;
}
