body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #1e1e1e, #3a3a3a);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    color: white;
}

.login-container {
    text-align: center;
}

.logo {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 2px;
}

.login-box {
    background: #ffffff10;
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login-box input {
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
}

.login-box button {
    padding: 12px;
    background: #ffce00;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.login-box button:hover {
    background: #ffc400;
}

