* {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }
  
  body {
    margin: 0;
    padding: 0;
    background: url('') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
  
  .container {
    display: flex;
    width: 900px;
    background: #ffffff;  
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }
  
.image-side {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 16px;
  margin: 1rem;
}

.image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  opacity: 1;
}

.form-side {
    flex: 1.5;
    padding: 2rem;
  }
  
  h2 {
    color: #d61f7b;
    margin-bottom: 1rem;
  }
  
  input, select {
    width: 100%;
    padding: 0.6rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
  }
  
  button {
    width: 100%;
    padding: 0.6rem;
    background-color: #d61f7b;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .toggle-link {
    margin-top: 1rem;
    text-align: center;
    cursor: pointer;
    color: #d45aa2;
  }
  