.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-card {
    width: 100%;
}

.login-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #0f172a;
    text-align: center;
}

.login-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 32px;
    text-align: center;
}

.input-group {
    margin-bottom: 16px;
}

.input-label {
    font-size: 14px;
    margin-bottom: 8px;
    color: #334155;
}

.input {
    width: 100%;
    height: 52px;
    border-radius: 14px;
    border: 1px solid #cbd5e1;
    padding: 0 16px;
    font-size: 16px;
    background: white;
    outline: none;
}

.button {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 14px;
    background: #0f172a;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 12px;
}