@font-face {
    font-family: "lato";
    src: url("fonts/Lato/Lato-Regular.ttf");
   }

   @font-face {
    font-family: "arkibal";
    src: url("fonts/Arkibal/Arkibal\ Serif\ Regular.ttf");
   }


body {
    height: 100vh;
    font-family: 'lato';
    color: #3c3c3c;
}

h1 {
    font-family: 'arkibal';
}

.home {
    text-align: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-input {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
}

.form-input label {
    margin-bottom:8px;
    text-align: left;
} 

.form-input input {
    border-radius: 30px;
    /* border: none; */
    padding: 14px 20px;
} 





.form-picture {
    margin-bottom: 70px;
    width: 400px;
}

.form-picture img {
    width: 100%;
}

.btn {
    font-family: Arial;
    color: #fff;
    font-size: 20px;
    background: #3c3c3c;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
    border: 1px solid #3c3c3c;
    border-radius: 30px 30px 30px 30px;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 10%);
    margin-top: 20px;
}


  
  
  .btn:hover {
    background: #ffda44;
    text-decoration: none;
    border: 1px solid #ffda44;
    color: #3c3c3c;
  }