/* Mobile first vibes */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: url('/media/bg-started.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

.login-wrapper {
    width: 80%;
    max-width: 360px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.555);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(5px);
}

.logo {
    width: 90%;
    max-width: 300px;
    margin-bottom: 20px;
}

/* Input & button tetap clean */
.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login-form input {
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.login-form button {
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    background: linear-gradient(90deg, #0077be 0%, #00a8e8 100%);
}

/* Extra responsivity */
@media (min-width: 480px) {
    .login-wrapper {
        padding: 35px;
        max-width: 380px;
    }
    
    .logo {
        max-width: 240px;
    }
}
