body{
    background:#0f1117;
    font-family:Arial, sans-serif;
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
    margin:0;
}
.wrapper {
    text-align: center;
}
.nama, .email, .password {
    margin-bottom: 14px;
}
.struk-box {
    width: 100%;
    max-width: 350px;
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(180deg, #181818, #111, #000);
    box-shadow: 0px 0px 10px #ffc400;
    border: 1px solid #ffc400;
}

.logo {
    width: 70px;
    margin-bottom: 10px;
    filter: drop-shadow(0px 0px 6px #ffc400);
}

h2 {
    margin: 5px 0 20px 0;
    font-size: 24px;
    font-weight: bold;
    color: #ffc400;
}

* {
    box-sizing: border-box;
}

.auth-box{
    background:#1a1d24;
    padding:28px;
    border-radius:10px;
    width:100%;
    max-width:360px;
    text-align:center;
    color:rgb(255, 255, 2);
    border:1px solid #3b3f4a;
}

.auth-box form {
    display:flex;
    flex-direction:column;
    gap:14px;
}

.auth-box input{
    width:100%;
    padding:14px 12px;
    border-radius:8px;
    margin: 0;
    border:1px solid #444;
    background:#2a2f39;
    color:rgb(255, 255, 255);
    font-size: 16px;
}

button{
    width:100%;
    padding:14px 12px;
    border:none;
    background:#f6c553;
    cursor:pointer;
    color:white;
    border-radius:8px;
    font-size:16px;
}

button:hover{
    background:#f6c453;
}

.auth-box p a {
    color: #ff0000;
    text-decoration: none;
}

.auth-box p a:hover {
    color: #ff00004d;
    text-decoration: underline;
}

/* Light Theme Overrides */
[data-theme="light"] body {
    background: #f8fafc;
    background-image: 
        radial-gradient(circle at 50% -20%, #cbd5e1 0%, transparent 70%),
        radial-gradient(circle at 0% 100%, #f1f5f9 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, #f1f5f9 0%, transparent 50%);
    color: #1e293b;
}

[data-theme="light"] .auth-box {
    background: #ffffff;
    color: #1e293b;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] h2 {
    color: #0f172a;
}

[data-theme="light"] .auth-box input {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #0f172a;
}

[data-theme="light"] .auth-box input:focus {
    border-color: #2563eb;
    background: #ffffff;
}

[data-theme="light"] button {
    background: #2563eb;
    color: white;
}

[data-theme="light"] button:hover {
    background: #1d4ed8;
}

[data-theme="light"] .auth-box p {
    color: #64748b;
}

[data-theme="light"] .auth-box p a {
    color: #2563eb;
}

[data-theme="light"] .auth-box p a:hover {
    color: #1d4ed8;
}

/* Google Login Button Styling */
.google-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 12px;
    border-radius: 8px;
    border: 1px solid #3b3f4a;
    background: #2a2f39;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 5px;
}

.google-login-btn:hover {
    background: #343a47;
    border-color: #4b5262;
}

.google-logo {
    width: 18px;
    height: 18px;
}

/* Light Theme Overrides */
[data-theme="light"] .google-login-btn {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #1e293b;
}

[data-theme="light"] .google-login-btn:hover {
    background: #f1f5f9;
}

