   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
   }

   :root {
       /* Prime Synapse color palette */
       --primary-gradient: linear-gradient(135deg,
               #ff1b6b 0%,
               #ff6b9d 25%,
               #c471ed 50%,
               #12c2e9 75%,
               #f64f59 100%);
       --pink: #ff1b6b;
       --purple: #c471ed;
       --blue: #12c2e9;
       --orange: #f64f59;
       --dark: #1a1a2e;
       --light: #f8f9fa;
   }

   body {
       font-family:
           -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
           Cantarell, sans-serif;
       background-color: var(--light);
       color: var(--dark);
       overflow-x: hidden;
   }

   /* Navigation */
   nav {
       position: fixed;
       width: 100%;
       z-index: 1000;
       background: rgba(255, 255, 255, 0.95);
       backdrop-filter: blur(10px);
       border-bottom: 1px solid rgba(196, 113, 237, 0.2);
       animation: slideDown 0.5s ease;
   }

   @keyframes slideDown {
       from {
           transform: translateY(-100%);
       }

       to {
           transform: translateY(0);
       }
   }

   .nav-container {
       max-width: 1200px;
       margin: 0 auto;
       padding: 0 20px;
       display: flex;
       justify-content: space-between;
       align-items: center;
       height: 80px;
   }

   .logo {
       display: flex;
       align-items: center;
       gap: 10px;
   }

   .logo-icon {
       width: 40px;
       height: 40px;
       background: var(--primary-gradient);
       border-radius: 10px;
       display: flex;
       align-items: center;
       justify-content: center;
       color: white;
       font-weight: bold;
       font-size: 20px;
       animation: pulse 2s ease-in-out infinite;
   }

   @keyframes pulse {

       0%,
       100% {
           transform: scale(1);
       }

       50% {
           transform: scale(1.05);
       }
   }

   .logo-text {
       font-size: 20px;
       font-weight: bold;
       background: var(--primary-gradient);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       background-clip: text;
       text-transform: uppercase;
       letter-spacing: -0.5px;
   }

   .nav-links {
       display: flex;
       gap: 40px;
       align-items: center;
   }

   .nav-links a {
       text-decoration: none;
       color: #666;
       font-weight: 500;
       font-size: 12px;
       text-transform: uppercase;
       letter-spacing: 2px;
       transition: all 0.3s ease;
       position: relative;
   }

   .nav-links a:hover {
       color: var(--purple);
   }

   .nav-links a::after {
       content: "";
       position: absolute;
       bottom: -5px;
       left: 0;
       width: 0;
       height: 2px;
       background: var(--primary-gradient);
       transition: width 0.3s ease;
   }

   .nav-links a:hover::after {
       width: 100%;
   }

   .btn-primary {
       background: var(--primary-gradient);
       color: white !important;
       padding: 12px 24px;
       border-radius: 25px;
       text-decoration: none;
       font-weight: bold;
       font-size: 12px;
       text-transform: uppercase;
       letter-spacing: 1px;
       transition: all 0.3s ease;
       box-shadow: 0 4px 15px rgba(196, 113, 237, 0.3);
   }

   .btn-primary:hover {
       transform: translateY(-2px);
       box-shadow: 0 6px 20px rgba(196, 113, 237, 0.4);
   }

   .menu-toggle {
       display: none;
       background: none;
       border: none;
       font-size: 24px;
       cursor: pointer;
   }

   /* Hero Section */
   .hero {
       position: relative;
       height: 100vh;
       display: flex;
       align-items: center;
       justify-content: center;
       padding-top: 80px;
       overflow: hidden;
   }

   .hero-bg {
       position: absolute;
       inset: 0;
       z-index: 0;
   }

   .hero-bg img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       opacity: 0.15;
   }

   .hero-overlay {
       position: absolute;
       inset: 0;
       background: linear-gradient(to bottom,
               rgba(248, 249, 250, 0.1),
               rgba(248, 249, 250, 0.8),
               var(--light));
   }

   .hero-content {
       position: relative;
       z-index: 10;
       text-align: center;
       padding: 20px;
       max-width: 900px;
       animation: fadeInUp 1s ease;
   }

   @keyframes fadeInUp {
       from {
           opacity: 0;
           transform: translateY(30px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   .badge {
       display: inline-block;
       padding: 8px 16px;
       margin-bottom: 24px;
       border-radius: 25px;
       background: linear-gradient(135deg, #ff6b9d, #c471ed);
       color: white;
       font-size: 12px;
       font-weight: bold;
       text-transform: uppercase;
       letter-spacing: 2px;
       animation: bounce 2s ease-in-out infinite;
   }

   @keyframes bounce {

       0%,
       100% {
           transform: translateY(0);
       }

       50% {
           transform: translateY(-10px);
       }
   }

   h1 {
       font-size: 60px;
       font-weight: bold;
       margin-bottom: 24px;
       line-height: 1.2;
       animation: fadeInUp 1s ease 0.2s backwards;
   }

   .gradient-text {
       background: var(--primary-gradient);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       background-clip: text;
   }

   .hero-subtitle {
       font-size: 22px;
       color: #666;
       margin-bottom: 40px;
       font-weight: 300;
       max-width: 700px;
       margin-left: auto;
       margin-right: auto;
       animation: fadeInUp 1s ease 0.4s backwards;
   }

   .hero-info {
       display: flex;
       justify-content: center;
       gap: 40px;
       margin-bottom: 40px;
       flex-wrap: wrap;
       animation: fadeInUp 1s ease 0.6s backwards;
   }

   .info-item {
       display: flex;
       align-items: center;
       gap: 8px;
       font-weight: bold;
       color: var(--dark);
   }

   .info-item svg {
       width: 20px;
       height: 20px;
       fill: var(--purple);
   }

   .btn-hero {
       display: inline-block;
       background: var(--primary-gradient);
       color: white;
       padding: 16px 40px;
       border-radius: 30px;
       text-decoration: none;
       font-size: 18px;
       font-weight: bold;
       box-shadow: 0 10px 30px rgba(196, 113, 237, 0.3);
       transition: all 0.3s ease;
       animation: fadeInUp 1s ease 0.8s backwards;
   }

   .btn-hero:hover {
       transform: translateY(-3px);
       box-shadow: 0 15px 40px rgba(196, 113, 237, 0.4);
   }

   /* Partners Section */
   .partners {
       padding: 60px 20px;
       background: white;
       border-top: 1px solid rgba(196, 113, 237, 0.2);
       border-bottom: 1px solid rgba(196, 113, 237, 0.2);
   }

   .partners-container {
       max-width: 1200px;
       margin: 0 auto;
       text-align: center;
   }

   .section-label {
       color: #999;
       text-transform: uppercase;
       letter-spacing: 4px;
       font-size: 11px;
       font-weight: bold;
       margin-bottom: 40px;
   }

   .partners-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
       gap: 40px;
       align-items: center;
   }

   .partner {
       display: flex;
       flex-direction: column;
       align-items: center;
       gap: 8px;
       transition: all 0.3s ease;
       filter: grayscale(100%);
       opacity: 0.7;
   }

   .partner:hover {
       filter: grayscale(0%);
       opacity: 1;
       transform: translateY(-5px);
   }

   .partner-logo {
       font-size: 32px;
       margin-bottom: 8px;
   }

   .partner-name {
       font-weight: bold;
       font-size: 14px;
       color: var(--dark);
   }

   .partner-category {
       font-size: 10px;
       color: #999;
       text-transform: uppercase;
   }

   /* Speakers Section */
   .speaker-inner {
       padding: 100px 20px;
       max-width: 1200px;
       margin: 0 auto;
       padding-top: 20px;
   }

   .section-header {
       margin-bottom: 60px;
   }

   .section-title {
       font-size: 42px;
       font-weight: bold;
       color: #fff;
       margin-bottom: 16px;
   }

   .title-underline {
       width: 80px;
       height: 4px;
       background: var(--primary-gradient);
       border-radius: 2px;
       animation: expandWidth 1s ease;
   }

   @keyframes expandWidth {
       from {
           width: 0;
       }

       to {
           width: 80px;
       }
   }

   .speakers-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 30px;
   }

   .speaker-card {
       background: white;
       border-radius: 24px;
       padding: 30px;
       box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
       border: 1px solid rgba(196, 113, 237, 0.1);
       transition: all 0.3s ease;
       animation: fadeInUp 0.6s ease backwards;
   }

   .speaker-card:nth-child(1) {
       animation-delay: 0.1s;
   }

   .speaker-card:nth-child(2) {
       animation-delay: 0.2s;
   }

   .speaker-card:nth-child(3) {
       animation-delay: 0.3s;
   }

   .speaker-card:nth-child(4) {
       animation-delay: 0.4s;
   }

   .speaker-card:hover {
       box-shadow: 0 10px 30px rgba(196, 113, 237, 0.2);
       transform: translateY(-10px);
   }

   .speaker-avatar {
       width: 96px;
       height: 96px;
       border-radius: 50%;
       margin: 0 auto 24px;
       overflow: hidden;
       border: 3px solid transparent;
       background: var(--primary-gradient);
       padding: 3px;
       filter: grayscale(100%);
       transition: filter 0.3s ease;
   }

   .speaker-card:hover .speaker-avatar {
       filter: grayscale(0%);
   }

   .speaker-avatar img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       border-radius: 50%;
   }

   .speaker-name {
       font-size: 20px;
       font-weight: bold;
       color: var(--dark);
       margin-bottom: 4px;
   }

   .speaker-role {
       background: var(--primary-gradient);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       background-clip: text;
       font-weight: 600;
       font-size: 14px;
       margin-bottom: 16px;
   }

   .speaker-bio {
       color: #666;
       font-size: 14px;
       line-height: 1.6;
   }

   /* Schedule Section */
   .schedule {
       padding: 100px 20px;
       background: linear-gradient(135deg, var(--dark) 0%, #2a2a4e 100%);
       color: white;
       position: relative;
       overflow: hidden;
       display: none;
   }

   section#speakers {
       background: linear-gradient(135deg, var(--dark) 0%, #2a2a4e 100%);
       color: #fff;
   }

   .schedule::before {
       content: "";
       position: absolute;
       top: -50%;
       right: -25%;
       width: 500px;
       height: 500px;
       background: radial-gradient(circle,
               rgba(196, 113, 237, 0.1),
               transparent);
       border-radius: 50%;
       filter: blur(60px);
   }

   .schedule-container {
       max-width: 900px;
       margin: 0 auto;
       position: relative;
       z-index: 10;
   }

   .schedule-title {
       font-size: 42px;
       font-weight: bold;
       margin-bottom: 48px;
       text-align: center;
   }

   .schedule-tabs {
       display: flex;
       justify-content: center;
       gap: 16px;
       margin-bottom: 48px;
   }

   .tab-btn {
       padding: 12px 32px;
       border-radius: 25px;
       border: none;
       font-size: 12px;
       font-weight: bold;
       text-transform: uppercase;
       cursor: pointer;
       transition: all 0.3s ease;
       background: rgba(255, 255, 255, 0.1);
       color: rgba(255, 255, 255, 0.6);
   }

   .tab-btn.active {
       background: var(--primary-gradient);
       color: white;
       box-shadow: 0 4px 15px rgba(196, 113, 237, 0.3);
   }

   .tab-btn:hover {
       background: rgba(255, 255, 255, 0.15);
   }

   .tab-content {
       display: none;
       animation: fadeIn 0.5s ease;
   }

   .tab-content.active {
       display: block;
   }

   @keyframes fadeIn {
       from {
           opacity: 0;
       }

       to {
           opacity: 1;
       }
   }

   .schedule-item {
       background: rgba(255, 255, 255, 0.05);
       border: 1px solid rgba(255, 255, 255, 0.1);
       padding: 24px;
       border-radius: 16px;
       margin-bottom: 24px;
       display: flex;
       align-items: center;
       justify-content: space-between;
       transition: all 0.3s ease;
       animation: slideInLeft 0.5s ease backwards;
   }

   .schedule-item:nth-child(1) {
       animation-delay: 0.1s;
   }

   .schedule-item:nth-child(2) {
       animation-delay: 0.2s;
   }

   .schedule-item:nth-child(3) {
       animation-delay: 0.3s;
   }

   .schedule-item:nth-child(4) {
       animation-delay: 0.4s;
   }

   @keyframes slideInLeft {
       from {
           opacity: 0;
           transform: translateX(-30px);
       }

       to {
           opacity: 1;
           transform: translateX(0);
       }
   }

   .schedule-item:hover {
       background: rgba(255, 255, 255, 0.1);
       transform: translateX(5px);
   }

   .schedule-item-content {
       display: flex;
       align-items: center;
       gap: 24px;
       flex: 1;
   }

   .schedule-time {
       display: flex;
       flex-direction: column;
       align-items: center;
       min-width: 100px;
       border-right: 1px solid rgba(255, 255, 255, 0.1);
       padding-right: 24px;
   }

   .schedule-time svg {
       width: 16px;
       height: 16px;
       margin-bottom: 4px;
   }

   .schedule-time-text {
       font-size: 14px;
       font-family: monospace;
   }

   .schedule-details {
       flex: 1;
   }

   .schedule-type {
       font-size: 10px;
       text-transform: uppercase;
       font-weight: bold;
       letter-spacing: 2px;
       background: var(--primary-gradient);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       background-clip: text;
       margin-bottom: 4px;
   }

   .schedule-event {
       font-size: 20px;
       font-weight: bold;
       margin-bottom: 4px;
   }

   .schedule-detail {
       color: rgba(255, 255, 255, 0.6);
       font-size: 14px;
   }

   .schedule-arrow {
       width: 24px;
       height: 24px;
       transition: all 0.3s ease;
   }

   .schedule-item:hover .schedule-arrow {
       transform: translateX(5px);
   }

   /* Booking Section */
   .booking {
       padding: 100px 20px;
       max-width: 1200px;
       margin: 0 auto;
       text-align: center;
   }

   .booking-title {
       font-size: 42px;
       font-weight: bold;
       color: var(--dark);
       margin-bottom: 16px;
   }

   .booking-subtitle {
       color: #666;
       margin-bottom: 60px;
       max-width: 700px;
       margin-left: auto;
       margin-right: auto;
   }

   .pricing-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 30px;
   }

   .pricing-card {
       padding: 40px;
       border-radius: 24px;
       border: 2px solid;
       display: flex;
       flex-direction: column;
       align-items: center;
       transition: all 0.3s ease;
       animation: fadeInUp 0.6s ease backwards;
   }

   .pricing-card:nth-child(1) {
       border-color: var(--orange);
       background: linear-gradient(135deg, rgba(246, 79, 89, 0.05), white);
       animation-delay: 0.1s;
   }

   .pricing-card:nth-child(2) {
       border-color: var(--purple);
       background: white;
       animation-delay: 0.2s;
   }

   .pricing-card:nth-child(3) {
       border-color: var(--blue);
       background: white;
       animation-delay: 0.3s;
   }

   .pricing-card:hover {
       transform: translateY(-10px);
       box-shadow: 0 20px 40px rgba(196, 113, 237, 0.2);
   }

   .pricing-title {
       font-size: 24px;
       font-weight: bold;
       color: var(--dark);
       margin-bottom: 8px;
   }

   .pricing-price {
       font-size: 40px;
       font-weight: 900;
       background: var(--primary-gradient);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       background-clip: text;
       margin-bottom: 32px;
   }

   .pricing-features {
       list-style: none;
       margin-bottom: 32px;
       flex-grow: 1;
       width: 100%;
   }

   .pricing-features li {
       display: flex;
       align-items: center;
       gap: 8px;
       padding: 12px 0;
       color: #666;
       font-size: 14px;
   }

   .pricing-features svg {
       width: 16px;
       height: 16px;
       flex-shrink: 0;
   }

   .pricing-btn {
       width: 100%;
       padding: 16px;
       border-radius: 12px;
       border: none;
       font-weight: bold;
       font-size: 14px;
       cursor: pointer;
       transition: all 0.3s ease;
   }

   .pricing-card:nth-child(1) .pricing-btn {
       background: var(--primary-gradient);
       color: white;
   }

   .pricing-card:nth-child(2) .pricing-btn,
   .pricing-card:nth-child(3) .pricing-btn {
       background: var(--dark);
       color: white;
   }

   .pricing-btn:hover {
       transform: translateY(-2px);
       box-shadow: 0 5px 15px rgba(196, 113, 237, 0.3);
   }

   /* Footer */
   footer {
       background: #f5f5f5;
       padding: 48px 20px;
       border-top: 1px solid rgba(196, 113, 237, 0.2);
   }

   .footer-container {
       max-width: 1200px;
       margin: 0 auto;
       display: flex;
       justify-content: space-between;
       align-items: center;
       flex-wrap: wrap;
       gap: 40px;
   }

   .footer-brand {
       display: flex;
       flex-direction: column;
       gap: 16px;
   }

   .footer-logo {
       display: flex;
       align-items: center;
       gap: 8px;
   }

   .footer-logo-icon {
       width: 32px;
       height: 32px;
       background: var(--primary-gradient);
       border-radius: 6px;
       display: flex;
       align-items: center;
       justify-content: center;
       color: white;
       font-weight: bold;
   }

   .footer-logo-text {
       font-weight: bold;
       color: var(--dark);
       text-transform: uppercase;
   }

   .footer-tagline {
       color: #999;
       font-size: 11px;
       text-transform: uppercase;
       letter-spacing: 2px;
   }

   .footer-links {
       display: flex;
       gap: 60px;
   }

   .footer-column h5 {
       font-weight: bold;
       color: var(--dark);
       margin-bottom: 16px;
       font-size: 11px;
       text-transform: uppercase;
       letter-spacing: 2px;
   }

   .footer-column ul {
       list-style: none;
   }

   .footer-column li {
       margin-bottom: 8px;
       font-size: 14px;
       color: #666;
       cursor: pointer;
       transition: color 0.3s ease;
   }

   .footer-column li:hover {
       color: var(--purple);
   }

   .footer-bottom {
       text-align: center;
       margin-top: 48px;
       color: #999;
       font-size: 10px;
       text-transform: uppercase;
       letter-spacing: 2px;
   }

   .mobile-menu {
       display: none;
   }

   /* Responsive */
   @media (max-width: 768px) {
       .nav-links {
           display: none;
       }

       .menu-toggle {
           display: block;
       }

       .mobile-menu {
           display: none;
           background: white;
           padding: 20px;
           box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
           border-top: 1px solid rgba(196, 113, 237, 0.2);
       }

       .mobile-menu.active {
           display: block;
           animation: slideDown 0.3s ease;
       }

       .mobile-menu a {
           display: block;
           padding: 12px 0;
           text-decoration: none;
           color: #666;
       }

       h1 {
           font-size: 36px;
       }

       .hero-subtitle {
           font-size: 18px;
       }

       .hero-info {
           flex-direction: column;
           gap: 16px;
       }

       .section-title {
           font-size: 32px;
       }

       .schedule-item {
           flex-direction: column;
           text-align: center;
       }

       .schedule-time {
           border-right: none;
           border-bottom: 1px solid rgba(255, 255, 255, 0.1);
           padding-right: 0;
           padding-bottom: 16px;
           margin-bottom: 16px;
       }

       .footer-container {
           flex-direction: column;
           text-align: center;
       }

       .footer-links {
           gap: 40px;
       }
   }

   /* Additional Animations */
   @keyframes gradientShift {
       0% {
           background-position: 0% 50%;
       }

       50% {
           background-position: 100% 50%;
       }

       100% {
           background-position: 0% 50%;
       }
   }

   .animated-gradient {
       background: var(--primary-gradient);
       background-size: 200% 200%;
       animation: gradientShift 3s ease infinite;
   }

   /* Scroll animations */
   .fade-in-section {
       opacity: 0;
       transform: translateY(30px);
       transition:
           opacity 0.6s ease,
           transform 0.6s ease;
   }

   .fade-in-section.visible {
       opacity: 1;
       transform: translateY(0);
   }

   /* ===== EVENT INFO SECTION ===== */
   .event-info-section {
       padding: 20px 10%;
       background: #f8f9fc;
   }

   .event-block {
       margin-bottom: 80px;
       opacity: 0;
       transform: translateY(50px);
       transition: all 0.8s ease;
   }

   .event-block.show {
       opacity: 1;
       transform: translateY(0);
   }

   .event-title {
       font-size: 32px;
       font-weight: 700;
       margin-bottom: 30px;
       position: relative;
   }

   .event-title::after {
       content: "";
       width: 60px;
       height: 4px;
       background: #7b3fe4;
       position: absolute;
       bottom: -10px;
       left: 0;
       border-radius: 5px;
   }

   .event-list {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
       gap: 20px;
   }

   .event-item {
       background: #fff;
       padding: 25px;
       border-radius: 15px;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
       transition: 0.3s;
       display: flex;
       align-items: flex-start;
       gap: 15px;
   }

   .event-item:hover {
       transform: translateY(-5px);
       box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
   }

   .event-icon {
       font-size: 22px;
       color: #7b3fe4;
       min-width: 30px;
   }

   .event-item p {
       margin: 0;
       color: #444;
       line-height: 1.6;
   }

   /* Responsive */
   @media (max-width: 768px) {
       .event-info-section {
           padding: 70px 5%;
       }
   }

   /* Animated Gradient */
   @keyframes gradientMove {
       0% {
           background-position: 0% 50%;
       }

       50% {
           background-position: 100% 50%;
       }

       100% {
           background-position: 0% 50%;
       }
   }

   .contact-section {
       min-height: 100vh;
       display: flex;
       align-items: center;
       justify-content: center;
       padding: 40px;
       background: #0000009c;
   }

   /* Glass Card */
   .form-container {
       background: rgba(255, 255, 255, 0.12);
       backdrop-filter: blur(15px);
       padding: 50px;
       border-radius: 20px;
       width: 100%;
       max-width: 500px;
       box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
       animation: fadeUp 1s ease;
   }

   @keyframes fadeUp {
       from {
           opacity: 0;
           transform: translateY(40px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   .form-container h2 {
       text-align: center;
       color: #fff;
       margin-bottom: 10px;
   }

   .subtitle {
       text-align: center;
       color: #eee;
       margin-bottom: 30px;
   }

   /* Floating Labels */
   .form-group {
       position: relative;
       margin-bottom: 30px;
   }

   .form-group input,
   .form-group textarea {
       width: 100%;
       padding: 12px 10px;
       border: none;
       border-bottom: 2px solid #fff;
       background: transparent;
       color: #fff;
       font-size: 16px;
       outline: none;
   }

   .form-group label {
       position: absolute;
       left: 10px;
       top: 12px;
       color: #ddd;
       pointer-events: none;
       transition: 0.3s;
   }

   .form-group input:focus+label,
   .form-group input:valid+label,
   .form-group textarea:focus+label,
   .form-group textarea:valid+label {
       top: -12px;
       font-size: 13px;
       color: #fff;
   }

   /* Button */
   .submit-btn {
       width: 100%;
       padding: 14px;
       border: none;
       border-radius: 50px;
       background: linear-gradient(90deg, #ff007f, #7b00ff);
       color: #fff;
       font-size: 16px;
       cursor: pointer;
       transition: 0.3s;
   }

   .submit-btn:hover {
       transform: scale(1.05);
       box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
   }

   /* Error */
   .error {
       font-size: 12px;
       color: #941010;
   }

   /* Success */
   .success-message {
       display: none;
       text-align: center;
       margin-top: 20px;
       color: #fff;
       font-weight: bold;
       background: #46a746;
       padding: 10px;
   }