* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  width: 100vw;
  /*height: 100vh;*/
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #625F50;
}

.item{
    width: 450px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 5px 5px 25px rgb(0.0.0.5);
}

a {
    color:#999;
    text-decoration: none;
}

a:hover{
    color:#fff;
}

h3{
  color: white;
  margin-top: 40px;
  margin-bottom: 40px;
}

h3 .title_name{
    font-size: 2em;
}

p {
  color: white;
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 0.85em;
}

input {
  padding: 5px;
  outline: none;
  border: none;
  border-radius: 5px;
}

button {
  cursor: pointer;
  border: none;
  padding: 20px 60px;
  border-radius: 5px;
  /*background-color: #8257e6;*/
  background-image: linear-gradient(180deg,#FF4F76, #8F2845);
  color: white;
}

button:hover {
  opacity: 0.9;
}

.divCopy {
  margin: 15px 0;
}

.divCopy img{
  width: 80%;
  margin-top: 40px;
}

.inviti{
    font-size: 1.2em;
}

.btnGen {
  background-color: #3a3a41;
}

@media (max-width: 320px) {
    .item{
    width: 100%;
    }
}