h1 {
    color: #24C6DC;
    font-weight: bold;
    margin: 0;
}

p {
    font-size: 14px;
    font-weight: 100;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 20px 0 30px;
}

span {
    font-size: 12px;
}

a {
    color: #514A9D;
    font-size: 14px;
    text-decoration: none;
    margin: 15px 0;
}

button {
    border-radius: 20px;
    border: 1px solid #ff4b2b;
    background-color: #ff4b2b;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
}

button:active {
    transform: scale(0.95);
}

button:focus {
    outline: none;
}

button.ghost {
    background-color: transparent;
    border-color: #ffffff;
}

form {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    height: 100%;
    text-align: center;
}

input {
    background-color: #eee;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
}

.social-container {
    margin: 20px 0;
}

.social-container a {
    border: 1px solid #dddddd;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    height: 40px;
    width: 40px;
    color: #000;
  
}
.container {
    background-color:#ffffff;
    border-radius: 1px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    position: relative;
    overflow: hidden;
    width: 768px;
    max-width: 100%;
    min-height: 480px;

    margin-top: 30px;
}
.form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.sign-in-container {
    left: 0;
    width: 50%;
    z-index: 2;
}

.sign-up-container {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

.container.right-panel-active .sign-in-container {
    transform: translateX(100%);
}

.container.right-panel-active .sign-up-container {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show 0.6s;
}

@keyframes show {
    0%,
    49.99% {
        opacity: 0;
        z-index: 1;
    }

    50%,
    100% {
        opacity: 1;
        z-index: 5;
    }
}
.overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 100;
}

.container.right-panel-active .overlay-container {
    transform: translateX(-100%);
}

.overlay {
    background: #24C6DC;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to top, #514A9D, #24C6DC);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to top, #514A9D, #24C6DC); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: #ffffff;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.container.right-panel-active .overlay {
    transform: translateX(50%);
}

.overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.overlay-panel h1 {
  color: white;
}
.overlay-left {
    transform: translateX(-20%);
}

.container.right-panel-active .overlay-left {
    transform: translateX(0);
}

.overlay-right {
    right: 0;
    transform: translateX(0);
}

.container.right-panel-active .overlay-right {
    transform: translateX(20%);
}

#info {
  margin-top: 1rem;
  text-align: center; 
}

/* Header Styles */
header {
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo-section {
    display: flex;
    align-items: center;
  }
  
  .logo-image {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  
  .logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #377dff;
  }
  
  .navigation {
    margin-top: 10px;
  }
  
  .navigation li {
    display: inline-block;
    margin-right: 20px;
  }
  
  .cta-section {
    display: flex;
    align-items: center;
  }
  
  .cta-button {
    background-color: #377dff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 16px;
    margin-right: 10px;
  }
  
  .cta-button:hover {
    background-color: #275acc;
  }
  
  .login-signup-button {
    text-decoration: none;
    color: #377dff;
    font-size: 16px;
  }
  
  .login-signup-button:hover {
    text-decoration: underline;
  }
  
  /* Hamburger Menu Styles */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: relative;
  }
  
  .hamburger span {
    width: 100%;
    height: 4px;
    background-color: #333;
    transition: transform 0.3s ease;
  }
  
  .hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  @media screen and (max-width: 768px) {
    .container {
      padding: 10px;
    }
  
    .header-content {
      flex-wrap: wrap;
    }
  
    .navigation {
      flex: 1 0 100%;
      margin-top: 20px;
    }
  
    .navigation li {
      display: block;
      margin-bottom: 10px;
    }
  
    .hamburger {
      display: flex;
    }
  }
  
  .bubble-wrap {
    overflow: hidden;
    height: 600px;
  }
  
  .bubbles {
    position: relative;
    background: salmon;
  }
  
  .bubble {
    position: absolute;
    width: 152px;
    height: 152px;
    border-radius: 50%;
    box-shadow: 
      0 15px 35px rgba(0, 0, 0, 0.1),
      0 3px 10px rgba(0, 0, 0, 0.1);
    background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/9332/stripe-logo-bubbles-spritesheet.png);
    background-size: 1076px 1076px;
  }
  
  .logo1 { background-position:   0      0; }
  .logo2 { background-position:  -154px  0; }
  .logo3 { background-position:  -308px  0; }
  .logo4 { background-position:  -462px  0; }
  .logo5 { background-position:  -616px  0; }
  .logo6 { background-position:  -770px  0; }
  .logo7 { background-position:  -924px  0; }
  .logo8 { background-position:   0     -154px; }
  .logo9 { background-position:  -154px -154px; }
  .logo10 { background-position: -308px -154px; }
  .logo11 { background-position: -462px -154px; }
  .logo12 { background-position: -616px -154px; }
  .logo13 { background-position: -770px -154px; }
  .logo14 { background-position: -924px -154px; }
  .logo15 { background-position:  0     -308px; }
  .logo16 { background-position: -154px -308px; }
  .logo17 { background-position: -308px -308px; }
  .logo18 { background-position: -462px -308px; }
  .logo19 { background-position: -616px -308px; }
  .logo20 { background-position: -770px -308px; }
  .logo21 { background-position: -924px -308px; }
  .logo22 { background-position:  0     -462px; }
  .logo23 { background-position: -154px -462px; }
  .logo24 { background-position: -308px -462px; }
  .logo25 { background-position: -462px -462px; }
  .logo26 { background-position: -616px -462px; }
  .logo27 { background-position: -770px -462px; }
  .logo28 { background-position: -924px -462px; }
  .logo29 { background-position:  0     -616px; }
  .logo30 { background-position: -154px -616px; }
  .logo31 { background-position: -308px -616px; }
  .logo32 { background-position: -462px -616px; }
  .logo33 { background-position: -616px -616px; }
  
  body {
    background: #E6EEF7;
  }