*{
  font-family: "Roboto", serif;
}

/* .formImage{
  background-color: aliceblue !important;
} */

.container-auth {
    display: flex;
    min-height: 100vh;
  }
  
  .left-panel {
    flex: 1;
    background-color: #ffd700;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
  }
  
  .avatar {
    width: 96px;
    height: 96px;
    background-color: #ffdb4d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .user-icon {
    width: 48px;
    height: 48px;
    color: #b39700;
  }
  
  .left-panel h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .left-panel p {
    font-size: 0.875rem;
    color: #806600;
    margin-bottom: 1.5rem;
  }
  
  .next-button {
    background-color: rgba(255, 215, 0, 0.2);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .chevron-right {
    width: 24px;
    height: 24px;
    color: #806600;
  }
  
  .right-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }
  
  .card {
    background-color: #fff;
    border-radius: 8px;
    width: 100%;
  }
  
  .card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .card-header h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .card-header p {
    font-size: 0.875rem;
    color: #666;
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
  }
  
  input[type="text"],
  input[type="password"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.9rem;
  }
  
  .radio-group {
    display: flex;
    gap: 1rem;
  }
  
  .radio-group label {
    font-weight: normal;
  }
  
  .radio-group.membership {
    justify-content: space-between;
  }
  
  .button-group {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  button {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .cancel-button {
    background-color: #f0f0f0;
    color: #333;
  }
  
  .save-button {
    background-color: #4ade80;
    color: #fff;
  }
  
  .cancel-button:hover {
    background-color: #e0e0e0;
  }
  
  .save-button:hover {
    background-color: #22c55e;
  }
  
  @media (max-width: 768px) {
    .container-auth {
      flex-direction: column;
    }
  
    .left-panel,
    .right-panel {
      flex: none;
    }
  
    .left-panel {
      padding: 3rem 1rem;
    }
  
    .right-panel {
      padding: 1rem;
    }
  }
  
  .form-label{
     font-size: 14px;
  }

  .select-input{
    font-size: 0.9rem;
  }