@import url("https://fonts.google.com/specimen/Poppins");

body {
  background-image: url(/images/bg-intro-desktop.png);
  background-color: hsl(0, 100%, 74%);
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  font-size: 16px;
  background-size: cover;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

.container {
  display: flex;
  width: 100%;
  height: 100vh;
  justify-content: space-between;
}

.text {
  width: 40%;
  height: 23em;
  margin: auto;
  color: azure;
}

h1 {
  font-size: 2cm;
}

.text p {
  font-size: 0.6cm;
}

.right {
  width: 40%;
  height: 37em;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.btn-b {
  background-color: hsl(248, 32%, 49%);
  color: #ffff;
  height: 3.5em;
  border-radius: 10px;
  border: none;
  box-shadow: 1px 7px hsl(154, 59%, 51%);
  cursor: pointer;
}

form {
  background-color: #ffff;
  height: 31em;
  text-align: center;
  border-radius: 10px;
  border: 1px solid hsl(246, 25%, 77%;
}


