body {
    background-color: black;
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

.logo {
    width: 220px;
    margin-bottom: 30px;
}

.login-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 280px;
}

    .login-box input {
        padding: 10px;
        border: none;
        border-radius: 4px;
    }

    .login-box button {
        padding: 10px;
        background: #2d7dff;
        border: none;
        color: white;
        cursor: pointer;
        border-radius: 4px;
    }

        .login-box button:hover {
            background: #1f5fd6;
        }
