* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-image: url(../img/bg_frm_matricula4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Lato', sans-serif;
    color: white;
  }
  
  .content {
    max-width: 800px;
    text-align: center;
  }
  
  .logo {
    width: 150px;
    margin-bottom: 20px;
  }
  
  h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  h2 {
    font-weight: 100;
    font-size: 40px;
    margin-bottom: 50px;
  }
  
  h3 {
    font-size: 25px;
    margin-bottom: 20px;
  }
  
  .input-text {
    display: block;
    width: 80%;
    outline: none;
    border: none;
    padding: 16px;
    margin: 0 auto 10px auto;
    border-radius: 6px;
    font-size: 20px;
  }
  
  .label-checkbox {
    display: block;
    width: 80%;
    margin: 10px auto;
    color: whitesmoke;
  }
  
  .button {
    width: 80%;
    margin: 30px auto;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    outline: none;
    border: none;
    padding: 15px;
    font-size: 20px;
    border-radius: 6px;
  }
  
  .button:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062
  }

  .footer {
    margin-top: 100px;
    height: 15vh;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.452);
  }

  h5 {
    padding-top: 4%;
    padding-bottom: 10px;
  }
  