*{
    box-sizing: border-box;
  }
  body {
    margin: 0;
    padding: 0;
    font-family: Arial;
    background-color: #0344f7;
    overflow: hidden;
  }
  h1 {
    margin: 0;
    padding: 0;
  }
  .container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;  
    align-items: center;
  }
  .img_years img {
    width: 160px;
  }
  .box_form {
    width: 420px;
    background-color: #0095cf;
    border: 1px solid white ;
    border-radius: 15px;
  }
  .title {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: #FFF;
    height: 80px;
  }
  .title h1 {
    width: 400px;
    text-align: center;
    font-size: 22px;
    padding-bottom: 5px;
  }
  .form_inputs form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 330px;
  }
  .form_inputs label {
    text-align: center;
    color: white;
  }
  .form_inputs input {
    text-align: center;
    width: 200px;
    margin-top: 5px;
    padding: 5px;
    border:none;
    border-radius: 5px;
  }
  .form_inputs .enviar {
    width: 100px;
    margin-top: 8px;
    border-radius: 7px;
    padding: 10px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    border:0;
    background-color: green;
  }
  .aprovacao,
  .reprovacao {
    color: #000;
    text-align: center;
  }
  .aprovacao {
    padding: 10px;
  }
  .modal-container{
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .5);
    position: fixed;
    top: 0 ;
    left: 0;
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
  }
  .modal {
    background-color: white;
    max-width: 60%;
    min-width: 300px;
    padding: 40px;
    box-shadow: 5px 5px 6px 4px #000;
    border-radius: 10px;
    position: relative;
  }
  @keyframes modal {
    from {
        opacity: 0;
        transform: translate3d(0,-60px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
  }
  .mostrar .modal {
    animation: modal .5s;
  }
  .modal-container.mostrar {
    display: flex;
  }
  .fechar {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 0;
    background-color: white;
    font-size: 25px;
    cursor: pointer;
  }
  @media (min-width: 400px) and (max-width:600px) {
    .box_form {
      width: 320px;
    }
    .title h1 {
      font-size: 20px;
    }
  }
  @media (min-width: 200px) and (max-width:399px) {
    .box_form {
      width: 250px;
      margin: 5px;
      margin-top: -70px;
    }
    .title h1 {
      font-size: 16px;
    }
    .modal {
      max-width: 60%;
      min-width: 220px;
    }
    .aprovacao,
    .reprovacao {
      font-size: 14px;
      width: 140px;
      text-align: center;
  }
  .img_years img {
    position: relative;
    bottom: 70px;
  }
  }