/* Authentication Forms Styles */
.ump-auth-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.ump-auth-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 600;
}

.ump-form-group {
    margin-bottom: 1.5rem;
}

.ump-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #555;
}

.ump-form-group input[type="text"],
.ump-form-group input[type="email"],
.ump-form-group input[type="password"],
.ump-form-group input[type="number"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.ump-form-group input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

.ump-form-group input[type="checkbox"] {
    margin-right: 0.5rem;
}

.ump-remember-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ump-checkbox-label {
    display: flex !important;
    align-items: center;
    margin-bottom: 0 !important;
}

.ump-checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 6px;
}

.ump-forgot-link {
    color: #0073aa;
    text-decoration: none;
    font-size: 0.9rem;
}

.ump-forgot-link:hover {
    text-decoration: underline;
}

.ump-button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ump-button:hover {
    background: #005a87;
}

.ump-button-secondary {
    background: #6c757d;
}

.ump-button-secondary:hover {
    background: #545b62;
}

.ump-error {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border: 1px solid #f5c6cb;
}

.ump-error p {
    margin: 0;
    margin-bottom: 0.5rem;
}

.ump-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border: 1px solid #c3e6cb;
}

.ump-success p {
    margin: 0;
    margin-bottom: 0.5rem;
}

.ump-info {
    background: #d1ecf1;
    color: #0c5460;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border: 1px solid #bee5eb;
}

.ump-info p {
    margin: 0;
    margin-bottom: 0.5rem;
}

.ump-error p:last-child {
    margin-bottom: 0;
}

.ump-auth-links {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.ump-auth-links a {
    color: #0073aa;
    text-decoration: none;
}

.ump-auth-links a:hover {
    text-decoration: underline;
}

/* Dashboard Gate Styles */
.ump-dashboard-gate {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    text-align: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.ump-dashboard-gate h2 {
    margin-bottom: 1rem;
    color: #333;
}

.ump-dashboard-gate p {
    margin-bottom: 2rem;
    color: #666;
}

.ump-gate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.ump-gate-buttons .ump-button {
    width: auto;
    min-width: 120px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ump-auth-container {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .ump-dashboard-gate {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .ump-gate-buttons {
        flex-direction: column;
    }
    
    .ump-gate-buttons .ump-button {
        width: 100%;
    }
}
