* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    min-height: 100%;
}
body {
    min-height: 100vh;
    font-family: "DM Sans", Inter, Roboto, Arial, sans-serif;
    background: #ffffff;
    color: #000000;
}
.content {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.login-card {
    width: min(100%, 420px);
    text-align: center;
}
h1 {
    color: #000000;
    font-size: 76px;
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: 0;
    margin: 0 0 36px;
}
form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
input[type="password"] {
    width: 100%;
    height: 56px;
    padding: 0 18px;
    border: 2px solid #0077ED;
    border-radius: 0;
    outline: none;
    background: #ffffff;
    color: #000000;
    font: inherit;
    font-size: 16px;
}
input[type="password"]:focus {
    border-color: #003366;
    box-shadow: 0 0 0 4px rgba(0, 119, 237, 0.12);
}
input::placeholder {
    color: #8E8E92;
}
button {
    height: 50px;
    min-width: 132px;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    background: #0077ED;
    color: #ffffff;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 119, 237, 0.3);
}
button:hover {
    background: #003366;
}
.alert {
    width: 100%;
    margin: 0 0 18px;
    padding: 14px 16px;
    border-left: 4px solid #ef4444;
    background: #fee2e2;
    color: #991b1b;
    text-align: left;
    font-size: 14px;
}
@media (max-width: 640px) {
    .login-card {
        width: min(100%, 340px);
    }
    h1 {
        font-size: 56px;
        margin-bottom: 30px;
    }
}
