/* استایل‌های صفحه ورود */
.wsm-login-form {
    max-width: 450px;
    margin: 40px auto;
    padding: 40px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f3f4;
}

.login-header h2 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 28px;
}

.login-header p {
    color: #6c757d;
    font-size: 16px;
    margin: 0;
}

.wsm-login-form .form-group {
    margin-bottom: 20px;
}

.wsm-login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
    font-size: 14px;
}

.wsm-login-form input[type="text"],
.wsm-login-form input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.wsm-login-form input[type="text"]:focus,
.wsm-login-form input[type="password"]:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.form-options {
    margin-bottom: 20px;
}

.rememberme {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.rememberme input {
    margin: 0;
}

.form-submit {
    text-align: center;
    margin-bottom: 20px;
}

#wp-submit {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
}

.login-links {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.lost-password {
    margin-bottom: 15px;
}

.lost-password a {
    color: #007cba;
    text-decoration: none;
    font-size: 14px;
}

.lost-password a:hover {
    text-decoration: underline;
}

.register-link p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.register-link .wsm-btn {
    margin-top: 10px;
    padding: 8px 20px;
    font-size: 14px;
}

.login-features {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.login-features h4 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    justify-content: center;
}

.feature-icon {
    font-size: 18px;
}

.feature-text {
    font-size: 12px;
    color: #495057;
    font-weight: 500;
}

.login-error {
    background: #f8d7da;
    color: #721c24;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
    text-align: center;
    font-weight: 600;
}

.login-success {
    text-align: center;
    padding: 30px 20px;
}

.success-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.login-success h3 {
    color: #28a745;
    margin-bottom: 10px;
    font-size: 24px;
}

.login-success p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
}

.login-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.login-actions .wsm-btn {
    min-width: 160px;
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .wsm-login-form {
        margin: 20px 15px;
        padding: 30px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .login-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .login-actions .wsm-btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .login-header h2 {
        font-size: 24px;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 5px;
    }
}