/* User Registration Styles */

.mas-signup-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.mas-signup-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    overflow: hidden;
}

.mas-signup-header {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.mas-signup-header h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 700;
}

.mas-signup-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

.mas-registration-form {
    padding: 40px 30px;
}

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

.mas-form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
    font-size: 14px;
}

.mas-form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.mas-form-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.mas-form-helper {
    margin: 6px 0 0 0;
    font-size: 12px;
    color: #6b7280;
}

.mas-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
}

.mas-checkbox input {
    margin-right: 10px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.mas-checkbox a {
    color: #2563eb;
    text-decoration: none;
}

.mas-checkbox a:hover {
    text-decoration: underline;
}

.mas-form-error {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    padding: 12px 14px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.mas-btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mas-btn-blue {
    background: #2563eb;
    color: white;
}

.mas-btn-blue:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.mas-btn-blue:active {
    transform: translateY(0);
}

.mas-btn-blue:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.mas-btn-large {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
}

.mas-register-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #6b7280;
}

.mas-register-footer a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.mas-register-footer a:hover {
    text-decoration: underline;
}

.mas-alert {
    padding: 16px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.mas-alert-info {
    background: #dbeafe;
    border: 1px solid #93c5fd;
    color: #1e40af;
}

.mas-alert-success {
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
}

.mas-alert-success p {
    margin: 0;
    font-size: 14px;
}

/* Loading State */
.mas-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .mas-signup-header {
        padding: 30px 20px;
    }

    .mas-signup-header h2 {
        font-size: 24px;
    }

    .mas-registration-form {
        padding: 30px 20px;
    }
}
