
  
  .input {
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
  }
  .input__label {
    position: absolute;
    left: 0;
    top: 0;
    padding: 6px 4px;
    margin: 9px 4px;
    background: pink;
    white-space: nowrap;
    transform: translate(0, 0);
    transform-origin: 0 0;
    background: #2f2f2f;
    transition: transform 120ms ease-in;
    font-weight: bold;
    line-height: 1.2;
  }
  .input__field {
    box-sizing: border-box;
    display: block;
    width: 100%;
    border: 1px solid #9ba4c1;
    padding: 12px 8px;
    color: white;
    background: #2f2f2f;
    border-radius: 0px;
    /* margin-bottom: 20px; */
    outline: none;
    font-family: 'Open Sans';
    font-size: 16px;
  }
  .input__field:not(:-moz-placeholder-shown) + .input__label {
    transform: translate(0.25rem, -65%) scale(0.8);
    color: #9ba4c1;
    border-top: 1px solid #9ba4c1;
    border-right: 1px solid #9ba4c1;
    border-left: 1px solid #9ba4c1;
  }
  
  .input__field:not(:-ms-input-placeholder) + .input__label {
    transform: translate(0.25rem, -65%) scale(0.8);
    color: #9ba4c1;
    
    border-top: 1px solid #9ba4c1;
    border-right: 1px solid #9ba4c1;
    border-left: 1px solid #9ba4c1;
  }
  .input__field:focus + .input__label, .input__field:not(:placeholder-shown) + .input__label {
    transform: translate(0.25rem, -65%) scale(0.8);
    color: #9ba4c1;
    border-top: 1px solid #9ba4c1;
    border-right: 1px solid #9ba4c1;
    border-left: 1px solid #9ba4c1;
  }
  
  
  .form_submit_button{
      margin-top: 30px; 
  }

  legend {
    font-size: 30px;
    font-family: 'SansForgetica';
}

fieldset {
    border-width: 1px;
    border-style: groove;
    border-color: #9ba4c1;
    border-image: initial;
    padding: 20px 40px;
    margin-bottom: 50px;
}
.radio_class{
    font-weight: bold;
    margin-bottom: 10px;
    padding-bottom: 10px;
    display: block;
    position: absolute;
    top: -12px;
    background-color: #161b21;
    padding: 0px 2px;
}
.radio_container{
    border-width: 1px;
    border-style: groove;
    border-color: #9ba4c1;
    border-image: initial;
    display: block;
    padding: 20px;
    position: relative;
}

select {
    background-color: #2f2f2f;
    color: #9ba4c1;
    height: 48px;
    padding: 0px 20px;
    font-size: 16px;
    font-family: 'Open Sans';
    border: 1px solid #9ba4c1;
    outline: 0;
    margin-bottom: 20px;
    min-width: 200px;
}
.ship_details{
    font-weight: bold;
    margin-bottom: 10px;
    display: inline-block;
}
select#ship_position{
    height: 164px;
    overflow-y: auto;
}

textarea.input__field {
    min-height: 200px;
}
.input.rang, select.rang_change {
  margin-bottom: 0px;
  height: 24px;
  min-width: auto;
  padding: 0px;
}
