/* N88 RFQ Authentication Styles */

.n88-auth-container {
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
}

.n88-auth-form-wrapper {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.n88-auth-title {
    margin: 0 0 30px 0;
    font-size: 28px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.n88-auth-message {
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
}

.n88-auth-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.n88-auth-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.n88-auth-form {
    margin: 0;
}

.n88-form-group {
    margin-bottom: 20px;
}

.n88-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.n88-form-group label .required {
    color: #d32f2f;
}

.n88-form-group input[type="text"],
.n88-form-group input[type="email"],
.n88-form-group input[type="password"],
.n88-form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.n88-form-group input[type="text"]:focus,
.n88-form-group input[type="email"]:focus,
.n88-form-group input[type="password"]:focus,
.n88-form-group select:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

.n88-checkbox-label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.n88-checkbox-label input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
}

.n88-auth-submit {
    width: 100%;
    padding: 12px 24px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.n88-auth-submit:hover:not(:disabled) {
    background-color: #005a87;
}

.n88-auth-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.n88-auth-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.n88-auth-footer a {
    color: #0073aa;
    text-decoration: none;
}

.n88-auth-footer a:hover {
    text-decoration: underline;
}

/* Designer Dashboard Styles */

.n88-designer-dashboard {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.n88-dashboard-header {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.n88-dashboard-header h1 {
    margin: 0 0 20px 0;
    font-size: 32px;
    color: #333;
}

.n88-user-info {
    margin-top: 20px;
}

.n88-user-info p {
    margin: 8px 0;
    font-size: 14px;
    color: #666;
}

.n88-user-info a {
    color: #0073aa;
    text-decoration: none;
}

.n88-user-info a:hover {
    text-decoration: underline;
}

.n88-dashboard-content {
    margin-top: 30px;
}

.n88-dashboard-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.n88-widget {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.n88-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.n88-widget h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #333;
}

.n88-widget p {
    margin: 0 0 20px 0;
    color: #666;
    font-size: 14px;
}

.n88-widget-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.n88-widget-link:hover {
    background-color: #005a87;
}

/* Responsive */
@media (max-width: 768px) {
    .n88-auth-container {
        margin: 20px;
        padding: 10px;
    }

    .n88-auth-form-wrapper {
        padding: 30px 20px;
    }

    .n88-dashboard-widgets {
        grid-template-columns: 1fr;
    }
}

