    .form-wrapper {
      max-width: 760px;
      padding: 0 4%;
      background: #fff;
      margin: 0 auto;
      min-height: 100vh;
      position: relative;
    }
    .form-title-container {
      display: flex;
      align-items: left;
      justify-content: left;
      margin: 20px 0 15px;
      position: relative;
      width: 100%;
    }
    .form-title-style {
      font-size: 26px;
      color: #28375a;
      font-weight: 1000;
    }
    .form-title-edit {
      font-size: 22px;
      color: #10428c;
      text-decoration: none;
      position: absolute;
      right: 0;
    }
    .form-title-alert {
      font-size: 22px;
      color: #ff6600;
      text-decoration: none;
      position: absolute;
      right: 0;
    }
    .form-title-arrow {
      font-size: 26px;
      color: #10428c;
      text-decoration: none;
      position: absolute;
      right: 0;
    }
    
    .form-group {
      position: relative;
      margin-bottom: 10px;
      width: 100%;
    }
    .field-span-2 {
      width: 49%;
    }
    .field-span-1 {
      width: 24.25%;
    }
    .field-gap-2 {
      margin-right: 2%;
    }
    .field-gap-1 {
      margin-right: 1%;
    }
    
    form {
      display: flex;
      flex-wrap: wrap;
    }
    input, textarea {
      width: 100%;
      padding: 30px 12px 10px;
      font-size: 18px;
      font-family: 'Abel','Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      border: 2px solid #c4d2e2;
      font-weight: 500;
      border-radius: 4px;
      background: transparent;
      outline: none;
      resize: none;
    }
    input {
      height: 66px;
    }
    textarea {
      height: 160px;
      resize: vertical;
    }
    label {
      position: absolute;
      top: 50%;
      left: 10px;
      color: #5f6368;
      font-size: 16px;
      pointer-events: none;
      background: #fff;
      padding: 0 4px;
      transform: translateY(-50%);
      transition: 0.2s ease;
    }
    input:focus ~ label,
    textarea:focus ~ label,
    input:not(:placeholder-shown) ~ label,
    textarea:not(:placeholder-shown) ~ label {
      top: 8px;
      font-size: 14px;
      color: #1a56b0;
      transform: translateY(0);
      font-weight: 400;
    }
    input:focus, textarea:focus {
      border-color: #10428c;
    }
    .form-button {
      width: 100%;
      margin-top: 10px;
    }
    .form-button button {
      width: 100%;
      background: #e04800;
      color: #fff;
      font-size: 18px;
      font-family: 'Abel','Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      padding: 6px;
      border: 4px solid #e04800;
      border-radius: 30px;
      cursor: pointer;
      box-shadow: 0 2px 4px rgba(0,0,0,0.15);
      transition: 0.3s;
    }
    .form-button button:hover {
      background: #ff671f;
      transform: translateY(-1px);
    }
    .back-home {
      font-size: 18px;
      color: #10428c;
      text-decoration: none;
      width: 100%;
      text-align: center;
      margin-top: 20px;
      margin-bottom: 20px;
    }
    
    .member-container {
      max-width: 500px;
    }
    .member-alert {
      width: 100%;
      padding: 0 3%;
      color: #ff6600;
    }
    .member-separator {
        width: 100%;
        border-top: 1px solid #dadce0;
        margin: 24px 0;
    }
    .member-bottom-buttons-container {
        width: 100%;
        display: flex;
        border: 4px solid #c4d2e2;
        border-radius: 24px;
        overflow: hidden;
        background: #ffffff;
        box-shadow: 0 3px 8px rgba(16, 66, 140, 0.15);
    }
    .member-bottom-buttons-container button {
      flex: 1;
      background: none;
      border: none;
      color: #10428c;
      font-size: 14px;
      padding: 12px 0;
      cursor: pointer;
      transition: 0.3s;
      font-weight: 600;
      position: relative;
    }
    .member-bottom-buttons-container button:first-child {
      border-radius: 24px 0 0 24px;
    }
    .member-bottom-buttons-container button:last-child {
      border-radius: 0 24px 24px 0;
    }
    .member-bottom-buttons-container button:first-child::after {
      content: "";
      position: absolute;
      top: 20%;
      right: 0;
      width: 1px;
      height: 60%;
      background: #c4d2e2;
    }
    .member-bottom-buttons-container button:hover {
      background: #dce6f5;
      color: #1a56b0;
      box-shadow: 0 4px 10px rgba(26, 86, 176, 0.2);
      transform: translateY(-2px);
      z-index: 1;
    }