*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
    background-color: #f8f8fb; 
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    height: 100vh;
}

.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.login-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 400px;
    text-align: left;
}

.login-card h1 {
    font-size: 20px;
    color: #111;
    margin-bottom: 8px;
    text-align: center;
}

.subtitle{
    font-size: 14px;
    color: #777;
    text-align: center;
    margin: 0;
    margin-bottom: 25px;
}

label {
    margin: 0;
    font-size: 14px;
    color: black;
    font-weight: bold;
}


input[name="username"],
input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    margin-top: 3px;
    margin-bottom: 8px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    background-color: #f9f9fb;
}

input::placeholder {
    font-size: 12px;
}

input:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: 0.3s;
}

button {
    width: 100%;
    padding: 10px;
    margin-top: 12px;
    background-color: #0a0a14;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #1e1e2d;
}