@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px dotted black; */
}
body {
  background: rgb(88, 144, 255);
  background: linear-gradient(
    90deg,
    rgba(88, 144, 255, 1) 0%,
    rgba(7, 161, 193, 1) 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: #002b7f;
}

.container {
  background-color: white;
  border-radius: 30px;
  /* width: 70%; */
  padding: 30px;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
}

.cabecalho {
  margin-bottom: 20px;
}

.input {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

form {
  margin-bottom: 30px;
}

p {
  margin-bottom: 7px;
}

.ddd {
  width: 35px;
}

.tel {
  width: 120px;
}

input {
  color: #002b7f;
  padding: 2px;
  width: 100%;
}

.svg {
  width: 250px;
}

.assinatura {
  padding: 50px 20px;
  border: 1px black dotted
}

a {
  text-decoration: none;
  color: black;
}
