body {

    margin: 0;

    font-family: Arial;

    background: #0f172a;

    color: white;

    display: flex;

    justify-content: center;

    align-items: center;

    height: 100vh;
}

.login-container {

    background: #1e293b;

    padding: 40px;

    border-radius: 10px;

    width: 300px;
}

input {

    width: 100%;

    padding: 12px;

    margin-bottom: 15px;

    border: none;

    border-radius: 5px;
}

button {

    width: 100%;

    padding: 12px;

    border: none;

    background: #3b82f6;

    color: white;

    border-radius: 5px;

    cursor: pointer;
}