body {
    box-sizing: border-box;
    background-color: rgb(6, 25, 83);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.container {
    width: 1330px;
    height: auto;
    margin: 30px auto;
    padding: 30px;
    display: flex;
    align-items: center;
       border: 2px solid grey;
    
  
    
}

.formpost {
    margin: auto;
    text-align: center;
    margin-top: 10px;
}

.label {
    color: white;
    font-weight: bolder;
    font-size: 25px;    
}

.form-data {
    background-color: white;
    text-align: center;
    border: 2px solid rgb(83, 196, 228) ;
    padding: 10px;
}

/* .btn {
    background-color: rgb(255, 255, 255);
    color: rgb(48, 3, 3);
    width: 100px;
    margin: 10px;
    padding: 5px;
    border-radius: 20px;
    font-weight: bold; */

/* } */
.btn {
    width: 10em;
    position: relative;
    height: 3.5em;
    border: 3px ridge #149CEA;
    outline: none;
    background-color: transparent;
    color: white;
    transition: 1s;
    border-radius: 0.3em;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .btn::after {
    /* content: ""; */
    position: absolute;
    top: -10px;
    left: 3%;
    width: 95%;
    height: 40%;
    background-color: #212121;
    transition: 0.5s;
    transform-origin: center;
  }
  
  .btn::before {
    content: "";
    transform-origin: center;
    position: absolute;
    top: 80%;
    left: 3%;
    width: 95%;
    height: 40%;
    /* background-color: #ffffff; */
    transition: 0.5s;
  }
  
  .btn:hover::before, btn:hover::after {
    transform: scale(0)
  }
  
  .btn:hover {
    box-shadow: inset 0px 0px 25px #1479EA;
  }

  .auto {
    color: white;
  }

  .section-1 {
    color: white;
  }

  td th {
    color: white;
    padding: 15px;
  }