@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');


* {
  color: white;
  font-family: 'Roboto', 'sans-serif';

}


body {
  height: 100vh;
  margin: 0;
}

a {
  text-decoration: none;
}

nav {
  padding: 30px;
}

nav img {
  width: 150px;
}


form {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}

input {
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 0.1rem solid transparent;
  font-size: 16px;
  width: 100%;
  box-shadow: 0 0 0 0.1rem rgba(255,255,255,.55);
  box-sizing: border-box;
  transition: box-shadow .1s ease;
  flex-grow: 1;
  text-align: left;
  padding: 1.5rem;
  margin-bottom: 20px;
}

input:hover, input:focus {
  box-shadow: 0 0 0 0.2rem rgba(255,255,255,.55);
}

input::placeholder {
  color: rgba(255,255,255,.75);
}

button {
  background-color: white;
  color: #f44c7f;
  margin-top: 10px;
  padding: 20px 40px;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  border: 0.1rem solid transparent;
  -webkit-appearance: none;
  appearance: none;
  letter-spacing: .1rem;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f44c7f;

}

p {
  text-align: center;
}

h1, button {
  text-transform: uppercase;
}

.wrapper {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 800px;
}

.app-wrapper {
  display: flex;
  margin-top: 20px;
  flex-wrap: wrap;
}

.app-wrapper img {
  width: 150px;
}
.app-wrapper a:first-child img {
  margin-right: 10px;
}

.logo {
  font-weight: 900;
  font-size: 100px;
  animation: logoRotate .5s 1.5s forwards;
  margin: 40px 0px;
}

@media screen and (max-width: 767px) {
  .wrapper {
    padding: 40px 20px;
  }
}

@keyframes logoRotate {
  100% {
    transform: rotate(90deg);
  }
}
