.auth-page {
    min-height: 100vh;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: #ffffff;
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.auth-logo {
    display: inline-flex;
    margin-bottom: 32px;
}

.auth-logo img {
    height: 48px;
}

.auth-title {
    margin: 0 0 8px;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 700;
    color: #16355b;
}

.auth-subtitle {
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.4;
    color: #6b7380;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-label {
    font-size: 14px;
    font-weight: 600;
    color: #16355b;
}

.auth-input {
    width: 100%;
    min-height: 48px;
    border: 1px solid #d9e6f3;
    border-radius: 999px;
    padding: 0 18px;
    font-size: 15px;
    outline: none;
}

.auth-input:focus {
    border-color: #409deb;
}

.auth-error {
    font-size: 14px;
    color: #d05151;
}

.auth-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7380;
}

.auth-btn {
    min-height: 50px;
    border: none;
    border-radius: 999px;
    background: #409deb;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.auth-btn:hover {
    background: #2f90e2;
}

.auth-back {
    display: inline-flex;
    margin-top: 20px;
    color: #6b7380;
    text-decoration: none;
    font-size: 14px;
}

.auth-back:hover {
    color: #16355b;
}