.user-auth-card {
    margin: 16px auto 24px;
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid #e7ebf1;
    background: #ffffff;
    box-shadow: 0 12px 36px rgba(23, 37, 84, 0.08);
}

.user-auth-title {
    margin-bottom: 8px;
}

.user-auth-subtitle {
    margin: 0 0 18px;
    color: #667085;
    font-size: 14px;
    line-height: 1.5;
}

.user-auth-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.user-auth-label {
    margin: 4px 0 0;
    color: #344054;
    font-size: 13px;
    font-weight: 600;
}

.user-auth-form input[type="text"],
.user-auth-form input[type="email"],
.user-auth-form input[type="password"] {
    height: 46px;
    padding: 0 14px;
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    background: #fff;
    color: #101828;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.user-auth-form input:focus {
    outline: none;
    border-color: #2f6af5;
    box-shadow: 0 0 0 4px rgba(47, 106, 245, 0.14);
}

.user-auth-password-wrap {
    position: relative;
}

.user-auth-password-wrap input[type="password"],
.user-auth-password-wrap input[type="text"] {
    width: 100%;
    padding-right: 44px;
}

.user-auth-password-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    color: #667085;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.user-auth-footer {
    margin-top: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.user-auth-footer a,
.user-auth-switch a {
    color: #2f6af5;
    text-decoration: none;
}

.user-auth-footer a:hover,
.user-auth-switch a:hover {
    text-decoration: underline;
}

.user-auth-submit {
    margin-top: 4px;
    width: 100%;
    justify-content: center;
}

.user-auth-status {
    min-height: 24px;
    margin-top: 4px;
}

.user-auth-switch {
    margin-top: 12px;
    color: #475467;
    font-size: 14px;
}

@media (max-width: 767px) {
    .user-auth-card {
        padding: 20px 16px;
        border-radius: 12px;
    }
}
