.auth-wrapper {
    max-width: 400px;
    margin: 0 auto;
}

.auth-card {
    padding: 30px;
}

.auth-title {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #334155;
}

.form-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    background-color: #f9fafb;
    color: #334155;
    box-sizing: border-box;
}

.form-input:focus {
    border-color: var(--primary-color);
    outline: none;
    background-color: white;
}

.forgot-password {
    text-align: right;
    margin-top: 5px;
}

.forgot-password a {
    color: #64748b;
    font-size: 13px;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.auth-divider {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    color: #64748b;
    font-size: 14px;
}

.auth-divider a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.auth-divider a:hover {
    text-decoration: underline;
}

.password-strength {
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
    width: 100%;
}

.strength-bar {
    height: 100%;
    width: 0;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.password-strength-text {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
    transition: color 0.3s ease;
}

.status-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    pointer-events: none;
}

.status-icon.valid {
    color: #2ed573;
}

.status-icon.invalid {
    color: #ff4757;
}

.error-text {
    color: #ff4757;
    font-size: 13px;
    margin-top: 4px;
}