/* Quantbots.co Modern Styles - Inspired by Frontend Theme */

:root {
    /* Frontend-inspired color palette */
    --primary-color: #2D2A6E;
    --secondary-color: #96AE00;
    --success-color: #27ae60;
    --danger-color: #EA0D42;
    --warning-color: #FFB800;
    --info-color: #12B7CE;
    --light-color: #F5F6F8;
    --dark-color: #2D2C6E;
    
    /* Text colors */
    --text-primary: #2D2A6E;
    --text-secondary: #4D5574;
    --text-muted: #79819C;
    
    /* Background colors */
    --bg-primary: #ffffff;
    --bg-secondary: #F2F2F6;
    --bg-accent: #F5F2FF;
    
    /* Border colors */
    --border-light: #E6EBF0;
    --border-medium: #ACAFB7;
    
    /* Fonts */
    --font-primary: 'Quicksand', sans-serif;
    --font-secondary: 'Jost', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(45, 42, 110, 0.1);
    --shadow-md: 0 4px 12px rgba(45, 42, 110, 0.15);
    --shadow-lg: 0 8px 25px rgba(45, 42, 110, 0.2);
    --shadow-xl: 0 20px 40px rgba(45, 42, 110, 0.25);
}

/* Global Body Styles */
.modern-admin-body {
    font-family: var(--font-secondary);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--text-secondary);
    line-height: 1.6;
/* Strategy Detail Page Styles */
.strategy-info-grid {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.strategy-info-grid .info-item {
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.strategy-info-grid .info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.strategy-info-grid .info-item strong {
    color: var(--text-primary);
    font-weight: 600;
    display: inline-block;
    min-width: 100px;
}

.challenge-title {
    color: var(--primary-color) !important;
    font-weight: 700;
    margin-bottom: 20px;
}

.challenge-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.challenge-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.challenge-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

/* Modern Navigation Styles with Dark Header */
.navbar.modern-navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a2e 100%) !important;
    box-shadow: 0 4px 20px rgba(45, 42, 110, 0.3) !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1) !important;
    padding: 0.75rem 0 !important;
    position: sticky;
    top: 0;
    z-index: 1030;
    backdrop-filter: blur(10px);
}

/* Override any conflicting navbar styles with maximum specificity */
navbar.navbar.modern-navbar,
.navbar.navbar-expand-lg.modern-navbar,
.navbar.modern-navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a2e 100%) !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    border-top: none !important;
}

/* Force override Bootstrap's default navbar styles */
.navbar-expand-lg.modern-navbar {
    background: linear-gradient(135deg, #2D2A6E 0%, #1a1a2e 100%) !important;
    background-color: transparent !important;
}

/* Override REST framework navbar styles specifically */
body .navbar.navbar-expand-lg.modern-navbar,
html body .navbar.modern-navbar,
.container-fluid .navbar.modern-navbar {
    background: linear-gradient(135deg, #2D2A6E 0%, #1a1a2e 100%) !important;
    background-color: transparent !important;
    border-top: none !important;
    position: relative !important;
}

/* Ensure navbar text is white */
.navbar.modern-navbar .navbar-nav .nav-link,
.navbar.modern-navbar .navbar-brand {
    color: white !important;
}

.modern-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.modern-brand:hover {
    transform: translateY(-1px);
    color: rgba(255, 255, 255, 0.9) !important;
}

.brand-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.brand-text {
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.modern-nav {
    gap: 0.5rem;
}

.modern-nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.modern-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.modern-nav-link:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modern-nav-link:hover::before {
    width: 80%;
}

.modern-nav-link.active {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modern-nav-link.active::before {
    width: 80%;
}

.modern-user-nav {
    margin-left: auto;
}

.modern-user-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modern-user-link:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.user-name {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.modern-dropdown .dropdown-menu {
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown-item {
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 0 0.5rem;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateX(5px);
}

.dropdown-item i {
    margin-right: 0.75rem;
    width: 16px;
    text-align: center;
}

.modern-dropdown .dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modern-dropdown .dropdown-item:hover {
    background: var(--bg-accent);
    color: var(--primary-color);
    transform: translateX(5px);
}

.modern-dropdown .dropdown-item.text-danger:hover {
    background: rgba(234, 13, 66, 0.1);
    color: var(--danger-color);
}

/* Login Page Styles */
.login-container {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: none;
}

.login-header {
    background: var(--primary-color);
    color: white;
    border-radius: 15px 15px 0 0;
    padding: 2rem;
    text-align: center;
}

.login-body {
    padding: 2rem;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
}

.btn-login {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 144, 220, 0.3);
}

/* Modern Dashboard Styles */
.dashboard-card {
    border: none;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.dashboard-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.dashboard-card .card-header {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-bottom: 2px solid var(--border-light);
    padding: 1.5rem;
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-primary);
}

.dashboard-card .card-body {
    padding: 1.5rem;
}

/* Modern Stat Cards */
.stat-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-card.success::before {
    background: linear-gradient(135deg, var(--success-color), #2ecc71);
}

.stat-card.warning::before {
    background: linear-gradient(135deg, var(--warning-color), #f1c40f);
}

.stat-card.info::before {
    background: linear-gradient(135deg, var(--info-color), #3498db);
}

.stat-card.primary::before {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.stat-card .stat-number {
    color: var(--text-primary);
    font-family: var(--font-primary);
}

.stat-card .stat-label {
    color: var(--text-muted);
    font-family: var(--font-secondary);
}

.stat-card i {
    color: var(--text-muted);
    opacity: 0.3;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Enhancements */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    transform: translateY(-1px);
}

.nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

/* Profile Page Styles */
.profile-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.profile-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid white;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1rem auto;
}

.profile-body {
    padding: 2rem;
}

/* Alert Enhancements */
.alert {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.alert i {
    margin-right: 0.5rem;
}

/* Button Enhancements */
.btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(52, 144, 220, 0.3);
}

/* Card Enhancements */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.card-header {
    background: var(--light-color);
    border-bottom: 2px solid var(--secondary-color);
    border-radius: 10px 10px 0 0 !important;
    font-weight: 600;
}

/* Form Enhancements */
.form-control, .form-select {
    border-radius: 8px;
    border: 2px solid #e1e8ed;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-card {
        margin: 1rem;
    }
    
    .login-header, .login-body {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .profile-header {
        padding: 1.5rem;
    }
    
    .profile-body {
        padding: 1.5rem;
    }
}

/* Modern Avatar and UI Components */
.avatar-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--bg-primary);
}

.empty-state {
    padding: 3rem 2rem;
    text-align: center;
}

.empty-state i {
    display: block;
    margin: 0 auto;
}

/* Enhanced Table Styling */
.table > :not(caption) > * > * {
    border-bottom-width: 1px;
    border-color: var(--border-light);
}

.table-hover > tbody > tr:hover > * {
    background-color: var(--bg-secondary);
    transition: background-color 0.2s ease;
}

.table thead th {
    background: var(--bg-secondary) !important;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Orders Table Styling */
.table .badge {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
    font-weight: bold;
}

.table .badge-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.table .badge-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.table .badge-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.table .badge-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Customer name styling */
.customer-name {
    color: #000 !important;
    font-weight: 600;
    font-size: 0.95rem;
}

.table td {
    vertical-align: middle;
}

/* Portfolio Card Layout Fixes */
.portfolio-card {
  min-height: 350px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  overflow: hidden !important;
  padding-bottom: 20px !important;
}

.portfolio-card .card-content {
  flex-grow: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.portfolio-card .card-details {
  margin: 20px 0 10px 0 !important;
  padding: 15px 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-grow: 1 !important;
}

.portfolio-card .detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px !important;
  padding: 2px 0;
}

.portfolio-card .detail-item:last-child {
  margin-bottom: 0 !important;
}

.portfolio-card .detail-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 80px;
}

.portfolio-card .detail-value {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 600;
  text-align: right;
}

.portfolio-card .strategy-cta {
  margin-top: auto !important;
  text-align: center;
  padding-top: 15px !important;
  flex-shrink: 0 !important;
}

.portfolio-card .strategy-details-btn {
  background: #5CBFA8 !important;
  border: none;
  color: white !important;
  padding: 12px 24px !important;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(92, 191, 168, 0.3);
  position: relative;
  overflow: hidden;
  display: inline-block !important;
  width: auto !important;
}

/* Footer Professional Styles */
.footer-professional {
  background: linear-gradient(135deg, #143443 0%, #06212b 100%);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  color: #ffffff;
  padding: 60px 0 0;
  margin-top: 8px;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  position: relative;
}

.footer-content {
  padding-bottom: 40px;
}

/* Footer Brand Section */
.footer-brand {
  margin-bottom: 30px;
}

.footer-logo {
  width: 60px;
  height: auto;
  margin-bottom: 15px;
}

.company-name {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.company-tagline {
  font-size: 14px;
  color: #52c41a;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: #b0bec5;
  margin-bottom: 0;
}

/* Footer Headings */
.footer-heading {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #52c41a, #389e0d);
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b0bec5;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a:hover {
  color: #52c41a;
  padding-left: 8px;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background-color: #52c41a;
  transition: width 0.3s ease;
}

.footer-links a:hover::before {
  width: 4px;
}

/* Newsletter Section */
.newsletter-text {
  font-size: 14px;
  color: #b0bec5;
  margin-bottom: 20px;
  line-height: 1.5;
}

.newsletter-form {
  margin-bottom: 20px;
}

.newsletter-input {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 6px 0 0 6px;
}

.newsletter-input::placeholder {
  color: #b0bec5;
}

.newsletter-input:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #52c41a;
  box-shadow: 0 0 0 0.2rem rgba(82, 196, 26, 0.25);
  color: #ffffff;
}

.newsletter-btn {
  background: linear-gradient(135deg, #52c41a, #389e0d);
  border: none;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 0 6px 6px 0;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: linear-gradient(135deg, #389e0d, #237804);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(82, 196, 26, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  margin-top: 40px;
}

.copyright-text {
  font-size: 14px;
  color: #b0bec5;
  margin: 0;
  font-weight: 400;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #b0bec5;
  border-radius: 50%;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: linear-gradient(135deg, #52c41a, #389e0d);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(82, 196, 26, 0.3);
  border-color: transparent;
}

.social-icon-img {
  width: 20px;
  height: 20px;
  fill: currentColor;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.social-link:hover .social-icon-img {
  filter: brightness(0) invert(1);
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-professional {
    padding: 40px 0 0;
  }
  
  .social-links {
    justify-content: center;
    margin-top: 20px;
  }
  
  .copyright-text {
    text-align: center;
  }
  
  .newsletter-input {
    border-radius: 6px;
    margin-bottom: 10px;
  }
  
  .newsletter-btn {
    border-radius: 6px;
    width: 100%;
  }
}