@import url('global.css');
body {
    background-color: var(--bg-color) !important;
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
  }

  .main-card {
    background: radial-gradient(circle at center, var(--other-bg), var(--info));
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    
  }

  @media (min-width: 992px) {
    .main-card {
      flex-direction: row;
      height: 100%;
    }

    .gradient-section,
    .form-section {
      flex: 1;
      height: 100%;
    }
  }

  .gradient-section {
    position: relative;
    overflow: hidden;
    padding: 3rem;
    color: var(--text-color);
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: auto;
}


  .gradient-section h1 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
  }

  .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .feature {
    margin-bottom: 1.5rem;
  }

  .hiphops-brand {
    position: absolute;
    bottom: 2rem;
    font-size: 1.25rem;
    font-weight: 700;
  }

  .form-section {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 3rem 2rem;
  }

  @media (min-width: 768px) {
    .form-section {
      padding: 4rem 3rem;
    }
  }

  .form-section h3 {
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
  }

  .divider hr {
    flex: 1;
    border: none;
    height: 1px;
    background-color: var(--text-secondary);
  }

  .divider span {
    margin: 0 0.75rem;
    color: var(--info);
  }

  .input-group-text {
    cursor: pointer;
  }

  form input, form textarea {
    padding: 12px;
    border: 1px solid var(--bg-color);
    border-radius: 5px;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: var(--bg-color) !important;
    color: var(--text-color) !important;
}