.negwork-auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.negwork-auth-form-wrapper {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 36px 32px;
    box-sizing: border-box;
}

.negwork-auth-header {
    text-align: center;
    margin-bottom: 28px;
}

.negwork-auth-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #1e1e2e;
}

.negwork-auth-errors {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 20px;
}

.negwork-error-message {
    margin: 0;
    font-size: 14px;
    color: #dc2626;
    line-height: 1.5;
}

.negwork-auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.negwork-form-field {
    display: flex;
    flex-direction: column;
}

.negwork-form-field label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
}

.negwork-form-field input[type="text"],
.negwork-form-field input[type="email"],
.negwork-form-field input[type="password"],
.negwork-form-field input[type="tel"] {
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.negwork-form-field input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.negwork-password-hint {
    margin: 6px 0 0 0;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
}

.negwork-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.negwork-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.negwork-btn-primary {
    background: #6366f1;
    color: #ffffff;
    width: 100%;
}

.negwork-btn-primary:hover:not(:disabled) {
    background: #4f46e5;
}

.negwork-btn-secondary {
    background: #f3f4f6;
    color: #374151;
}

.negwork-btn-secondary:hover:not(:disabled) {
    background: #e5e7eb;
}

.negwork-btn-edit {
    background: #fef3c7;
    color: #92400e;
    font-size: 12px;
    padding: 4px 10px;
}

.negwork-btn-edit:hover:not(:disabled) {
    background: #fde68a;
}

.negwork-btn-archive {
    background: #dbeafe;
    color: #1e40af;
    font-size: 12px;
    padding: 4px 10px;
}

.negwork-btn-archive:hover:not(:disabled) {
    background: #bfdbfe;
}

.negwork-btn-delete {
    background: #fee2e2;
    color: #991b1b;
    font-size: 12px;
    padding: 4px 10px;
}

.negwork-btn-delete:hover:not(:disabled) {
    background: #fecaca;
}

.negwork-btn-restore {
    background: #d1fae5;
    color: #065f46;
    font-size: 12px;
    padding: 4px 10px;
}

.negwork-btn-restore:hover:not(:disabled) {
    background: #a7f3d0;
}

.negwork-auth-links {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.negwork-auth-links a {
    color: #6366f1;
    text-decoration: none;
}

.negwork-auth-links a:hover {
    text-decoration: underline;
}

.negwork-auth-separator {
    color: #d1d5db;
    margin: 0 8px;
}

.negwork-success-message {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #166534;
}