/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #aee6e6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  /* Wrapper Styles */
  .register-wrapper {
    display: flex;
    width: 80%;
    max-width: 900px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  /* Information Section */
  .info-section {
    background-color: #2e6da4;
    color: #fff;
    padding: 30px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .info-section h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  
  .info-section p {
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  .info-section .btn {
    padding: 10px 20px;
    background-color: #fff;
    color: #2e6da4;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
  }
  
  .info-section .btn:hover {
    background-color: #d9e8f2;
  }
  
  /* Form Section */
  .form-section {
    padding: 30px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .form-section h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #2e6da4;
  }
  
  .input-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .input-row input,
  .input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
  }
  
  .input-group {
    margin-bottom: 15px;
  }
  
  .checkbox-group {
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
  }
  
  .checkbox-group input {
    margin-right: 10px;
  }
  
  .checkbox-group a {
    color: #2e6da4;
    text-decoration: none;
  }
  
  .checkbox-group a:hover {
    text-decoration: underline;
  }
  
  .form-section .btn {
    width: 100%;
    padding: 10px;
    background-color: #2e6da4;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .form-section .btn:hover {
    background-color: #1a4c73;
  }
  