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

body {
    background-color: #f1db5d;
    padding: 20px 0;
  }

  .form-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c3e50; /* deep slate blue-gray */
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
  }

  .registration-container {
    display: flex;
    min-height: calc(100vh - 40px);
    max-width: 1200px;
    margin: auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
  }

  .left-section {
    background: linear-gradient(159deg, rgba(0,127,255,1) 0%, rgba(42,82,190,1) 100%);
    color: white;
    padding: 40px;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .left-section img.logo {
    max-width: 170px;
  }

  .left-section h1 {
    margin-top: 20px;
    font-size: 24px;
  }
  .left-section h2 {
    font-size: 20px;
  }

  .right-section {
    background: #fff;
    width: 60%;
    padding: 40px;
  }
  .error-message {
    color: red;
    font-size: 0.9em;
    margin-top: 5px;
  }
  

  @media (max-width: 768px) {
    .registration-container {
      flex-direction: column;
    }

    .left-section,
    .right-section {
      width: 100%;
      padding: 30px;
    }
  }

