* {
    margin:  0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    font-size: 24px;
}

body {
    display: flex;
    position: relative;
    justify-content: center;
    background-color: whitesmoke;
    overflow-x: hidden;
}

.container {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 70%;
    gap: 50px;
    height: 700px;
    margin: 10px 0px;
    align-items: center;
    border: 3px solid purple;
    border-radius: 15px;    
    justify-content: center;
}

.wrapper-content {
    width: 55%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.container h1 {
    font-size: 2rem;
    color: burlywood;
}

.container p {
    text-align: center;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;

}

form input {
    width: 100%;
    height: 30px;
    border: 3px solid wheat;
    border-radius: 10px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
}

form button {
    width: 200px;
    height: 40px;
    background-color: blueviolet;
    color: aliceblue;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19) ;
}

form button:hover {
    transform: scale(1.1); 
    animation: bounce 0.5s ease infinite alternate;
}

@keyframes bounce {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-10px);
    }
  }
