

* {
    box-sizing: border-box;
  }
  
  body {
    font-family: "Roboto", sans-serif;
    background-color: #01205d;
    color: #1b1c22;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
  }
  
  .container_form {
    background-color: #fff;
    padding: 20px 40px;
    border-radius: 5px;
  }
  
  .container_form h1 {
    text-align: center;
    margin-bottom: 30px;
  }


  .btn {
    cursor: pointer;
    display: inline-block;
    width: 100%;
    background: #01205d;
    color: #fff;
    padding: 15px;
    font-family: inherit;
    font-size: 16px;
    border: 0;
    border-radius: 5px;
  }
  
  .btn:focus {
    outline: 0;
  }
  
  .btn:active {
    transform: scale(0.98);
  }

  .btn:hover {
    background: #ead860;
    color: #01205d;
    font-weight: bold;
  }
  
  
  .form-control {
    position: relative;
    margin: 20px 0 40px;
    width: 500px;
  }
  
  .form-control input {
    background-color: transparent;
    border: 0;
    border-bottom: 2px #01205d solid;
    display: block;
    width: 100%;
    padding: 15px 0;
    font-size: 18px;
    color: #1b1c22;
  }
  
  .form-control input:focus,
  .form-control input:valid {
    outline: 0;
    border-bottom-color: #fff;
  }
  
  .form-control label {
    position: absolute;
    top: 15px;
    left: 0;
    pointer-events: none;
  }
  
  .form-control label span {
    display: inline-block;
    font-size: 18px;
    min-width: 5px;
    transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .form-control input:focus + label span,
  .form-control input:valid + label span {
    color: #1b1c22;
    transform: translateY(-30px);
  }
  
  
  @media only screen and (max-width: 767px) {
    .container_info {
        width: 90%;
        height: auto;
    }
  
    .container_form {
        width: 90%;
        height: auto;
    }
  
    .form-control {
        width: 80vw;
    }
  }