* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    height: 100vh;
    overflow: hidden;
}
  
.container {
    display: flex;
    height: 100vh;
    max-width: 100vw;
    padding: 0px !important;
}
  
  /* Left Side Styles */
.left-side {
    flex: 0 0 60%;
    background-image: url("https://lila-public-cdn.s3.us-east-1.amazonaws.com/background_free.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #2f1f53;
    position: relative;
    overflow: hidden;
}

.left-side::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Country Selector */
.country-selector {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 30;
}

.country-btn {
    background: transparent;
    border: none;
    color: #aeaeae;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.country-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.country-dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 8px;
    width: 160px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e5e5;
    padding: 8px 0;
    z-index: 30;
    display: none;
}

.country-dropdown.show {
    display: block;
}

.country-option {
    width: 100%;
    text-align: left;
    padding: 8px 16px;
    border: none;
    background: none;
    color: #374151;
    cursor: pointer;
    transition: background-color 0.2s;
}

.country-option:hover {
    background: #f3f4f6;
}

/* Logo Section */
.logo-section {
    position: absolute;
    top: 48px;
    left: 48px;
    z-index: 30;
}

.logo {
    height: 81px;
    margin: -24px 0;
    object-fit: contain;
}

.main-heading {
    color: white;
    font-weight: 800;
    font-size: 4.5rem;
    line-height: 1.1;
    max-width: 28rem;
    margin: 150px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.accessin-text {
    color: #b391ff;
}

/* Right Side Styles */
.right-side {
    flex: 0 0 40%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

.form-container {
    width: 100%;
    max-width: 28rem;
}

.step {
    display: block;
}

.step.hidden {
    display: none;
}

.form-header {
    margin-bottom: 32px;
}

.form-header h2 {
    color: #b391ff;
    font-weight: bold;
    font-size: 2.25rem;
    margin-bottom: 8px;
    text-align: left;
}

.form-header p {
    color: #6b6b6b;
    font-size: 1.25rem;
    text-align: left;
}

/* Selection Buttons */
.selection-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.selection-btn {
    width: 100%;
    padding: 32px;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.selection-btn:hover {
    background: #f9fafb;
    border-color: #b391ff;
}

.selection-btn:first-child:hover {
    border-color: #b391ff;
}

.selection-btn:last-child:hover {
    border-color: #10b981;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.selection-btn:hover .btn-icon {
    transform: scale(1.1);
}

.icon-svg {
    width: 32px;
    height: 32px;
    color: #6b7280;
}

.btn-text h3 {
    color: #2f1f53;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.highlight-text {
    color: #b391ff;
    font-weight: 700;
}

/* Form Styles */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.input-group {
    position: relative;
}

.input-group input {
    width: 100%;
    height: 56px;
    padding: 0 16px 0 48px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    font-size: 16px;
    color: #6b6b6b;
    outline: none;
    transition: border-color 0.2s;
}

.input-group input:focus {
    border-color: #b391ff;
}

.input-group input::placeholder {
    color: #aeaeae;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #aeaeae;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: #b391ff;
}

.checkbox-group label {
    color: #6b6b6b;
    font-size: 14px;
    line-height: 1.4;
}

.link {
    color: #b391ff;
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    height: 56px;
    background: #b391ff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-btn:hover {
    background: #e6395c;
}

.signin-link {
    text-align: center;
  }
  
.signin-link p {
    color: #aeaeae;
}

.email-info {
    background: rgba(255, 64, 102, 0.1);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 32px;
}

.email-info p {
    color: #2f1f53;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
      flex-direction: column;
    }
  
    .left-side {
      flex: 0 0 40%;
    }
  
    .right-side {
      flex: 0 0 60%;
      padding: 24px;
    }
  
    .main-heading {
      font-size: 2.5rem;
      margin: 50px 0;
    }
  
    .logo-section {
      top: 24px;
      left: 24px;
    }
  
    .selection-btn {
      padding: 24px;
    }
  
    .btn-text h3 {
      font-size: 16px;
    }
}
  
@media (max-width: 480px) {
    .left-side {
      flex: 0 0 30%;
    }
  
    .right-side {
      flex: 0 0 70%;
      padding: 16px;
    }
  
    .main-heading {
      font-size: 1.8rem;
      margin: 30px 0;
    }
  
    .form-header h2 {
      font-size: 1.8rem;
    }
  
    .form-header p {
      font-size: 1rem;
    }
  
    .selection-btn {
      padding: 20px;
    }
  
    .btn-content {
      gap: 12px;
    }
  
    .btn-icon {
      width: 40px;
      height: 40px;
    }
  
    .icon-svg {
      width: 24px;
      height: 24px;
    }
  
    .btn-text h3 {
      font-size: 14px;
    }
}