body {
    align-items: center;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    /* height: 100vh; */
  }
  
  .form {
    background-color: #2d614d;
    border-radius: 20px;
    box-sizing: border-box;
    height: auto;
    padding: 22px;
    width: 640px;
    margin-top: 20px;
  }

  .label    {
    color: #eee;
    font-family: sans-serif;
  }
  
  .title {
    color: #eee;
    font-family: sans-serif;
    font-size: 19px;
    font-weight: 600;
    margin-top: 30px;
  }
  
  .subtitle {
    color: #eee;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
  }
  
  .input-container {
    height: 100%;
    position: relative;
    width: 100%;
  }
  
  .ic1 {
    margin-top: 15px;
  }
  
  .ic2 {
    margin-top: 30px;
  }
  
  .input {
    background-color: #bdc0d7;
    border-radius: 12px;
    border: 0;
    box-sizing: border-box;
    color: #000000;
    font-size: 14px;
    height: 100%;
    outline: 0;
    padding: 6px 20px 6px;
    width: 100%;
  }

  .input_area {
    background-color: #bdc0d7;
    border-radius: 12px;
    border: 0;
    box-sizing: border-box;
    color: #000000;
    font-size: 14px;
    height: 90px;
    outline: 0;
    padding: 6px 20px 6px;
    width: 100%;
    resize: vertical;
  }

  .radio_input {
    display: inline-flex;
    background-color: #bdc0d7;
    border-radius: 12px;
    border: 0;
    box-sizing: border-box;
    color: #000000;
    font-size: 14px;
    height: 100%;
    outline: 0;
    padding: 6px 20px 6px;
    width: 100%;
    justify-content: space-between;
    margin: 0px;
  }

  li {
    display: block;
  }

  .input_file {
    background-color: #bdc0d7;
    border-radius: 12px;
    border: 0;
    box-sizing: border-box;
    color: #000000;
    font-size: 13px;
    height: 100%;
    outline: 0;
    padding: 10px 20px 10px;
    width: 100%;
  }

  .fileFields {
    display: flex;
  }

  .file_button {
    border: none;
    background: #084cdf;
    padding: 5px 12px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
  }

  .fileFields:hover {
    background: #0d45a5;
  }

  input[type=file]::file-selector-button {
    margin-right: 20px;
    border: none;
    background: #084cdf;
    padding: 5px 12px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease-in-out;
  }
  
  input[type=file]::file-selector-button:hover {
    background: #0d45a5;
  }
  
  .cut {
    background-color: #15172b;
    border-radius: 10px;
    height: 20px;
    left: 20px;
    position: absolute;
    top: -20px;
    transform: translateY(0);
    transition: transform 200ms;
    width: 76px;
  }
  
  .cut-short {
    width: 50px;
  }
  
  .input:focus ~ .cut,
  .input:not(:placeholder-shown) ~ .cut {
    transform: translateY(8px);
  }
  
  .placeholder {
    color: #65657b;
    font-family: sans-serif;
    left: 20px;
    line-height: 14px;
    pointer-events: none;
    position: absolute;
    transform-origin: 0 50%;
    transition: transform 200ms, color 200ms;
    top: 20px;
  }
  
  .input:focus ~ .placeholder,
  .input:not(:placeholder-shown) ~ .placeholder {
    transform: translateY(-30px) translateX(10px) scale(0.75);
  }
  
  .input:not(:placeholder-shown) ~ .placeholder {
    color: #808097;
  }
  
  .input:focus ~ .placeholder {
    color: #dc2f55;
  }
  
  .submit {
    background-color: #08d;
    border-radius: 12px;
    border: 0;
    box-sizing: border-box;
    color: #eee;
    cursor: pointer;
    font-size: 18px;
    height: 50px;
    margin-top: 38px;
    // outline: 0;
    text-align: center;
    width: 100%;
  }
  
  .submit:active {
    background-color: rgb(117, 178, 228);
  }
  
  .invalid_email {
    color: #fd0000;
    font-family: sans-serif;
    font-size: 18px;
  }

  .input_remark {
    color: #eee;
    white-space: pre-line;
  }

  .input_remark_em {
    color: #fffc36;
    white-space: pre-line;
  }


  @media (max-width:320px) { 
    .input { 
      font-size: 40px; 
    }
    .form {
      width: 100%;
    }
    .label {
      font-size: 40px;
    }
  }

  