.ap-password-reset-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ap-password-reset-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 40px;
    max-width: 420px;
    width: 100%;
}

.ap-password-reset-header h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    color: #1e1e1e;
}

.ap-password-reset-header p {
    margin: 0 0 30px 0;
    text-align: center;
    color: #666;
    line-height: 1.5;
}

.ap-reset-error,
.ap-reset-success {
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.ap-reset-error {
    background: #fef2f2;
    border-left: 4px solid #dc3545;
    color: #721c24;
}

.ap-reset-success {
    background: #f0fdf4;
    border-left: 4px solid #00a32a;
    color: #00703c;
}

.ap-reset-error .dashicons,
.ap-reset-success .dashicons {
    flex-shrink: 0;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.ap-reset-form-group {
    margin-bottom: 20px;
}

.ap-reset-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.ap-reset-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.ap-reset-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.ap-reset-button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: linear-gradient(135deg, #4facfe 0%, #0274be 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ap-reset-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.ap-reset-links {
    text-align: center;
    margin-top: 20px;
}

.ap-reset-links a {
    color: #1375c7;
    text-decoration: none !important;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.ap-reset-links a:hover {
    text-decoration: underline;
}

.ap-reset-links .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

@media (max-width: 480px) {
    .ap-password-reset-container {
        padding: 30px 20px;
    }
}