body {
    background: #F7F6F2;
    font-family: 'Inter', 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #111111;
}

.login-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 36px 16px;
    background: #F7F6F2;
}

.login-card {
    width: min(360px, 92vw);
    background: #F7F6F2;
    border: 1px solid #E0DED9;
    border-radius: 3px;
    padding: 32px 28px 28px;
    text-align: center;
    box-shadow: none;
}

.login-card form {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.login-logo {
    width: 64px;
    margin-bottom: 24px;
    opacity: 0.8;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
}

.input-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    padding: 0 0 8px;
    border: none;
    border-bottom: 1px solid #111111;
    border-radius: 0;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #111111;
    outline: none;
    box-sizing: border-box;
    box-shadow: none;
    transition: border-color 150ms ease;
}

.input-group input::placeholder {
    color: #CCCCCC;
}

.input-group input:focus {
    border-bottom-color: #111111;
    box-shadow: none;
}

.login-button {
    border: 1px solid #111111;
    background: transparent;
    color: #111111;
    border-radius: 3px;
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    box-shadow: none;
    transition: 150ms ease;
    margin-top: 8px;
}

.login-button:hover {
    background: #111111;
    color: #F7F6F2;
    transform: none;
    box-shadow: none;
}

.login-button:active {
    background: #111111;
    color: #F7F6F2;
    transform: none;
    box-shadow: none;
}

.forgot-password {
    margin-top: 16px;
}

.forgot-password a {
    font-family: 'Inter', sans-serif;
    color: #888888;
    text-decoration: none;
    font-size: 0.85rem;
}

.forgot-password a:hover {
    color: #111111;
    text-decoration: underline;
}
