* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;

    background: #0f172a;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 100vh;

    color: white;
}

Login
.login-container,
.dashboard-container {

    background: #1e293b;

    padding: 40px;

    border-radius: 16px;

    width: 350px;

    text-align: center;

    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

h1 {
    margin-bottom: 25px;
}

form {
    display: flex;
    flex-direction: column;

    gap: 15px;
}

input {
    padding: 12px;

    border: none;

    border-radius: 8px;

    font-size: 16px;
}

button {

    padding: 12px;

    border: none;

    border-radius: 8px;

    background: #2563eb;

    color: white;

    font-size: 16px;

    cursor: pointer;

    transition: 0.3s;
}

button:hover {
    opacity: 0.9;
}
