* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  background-color: #f7f7f7;
  width: 100%;
}

body {
  height: 100%;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0 32px;
  background: #f7f7f7;
  font-family: "libre-franklin", sans-serif;
  animation: rotate 6s infinite alternate linear;
}

.circle {
  position: fixed;
  top: -50vmin;
  left: -50vmin;
  width: 100vmin;
  height: 100vmin;
  border-radius: 47% 53% 61% 39% / 45% 51% 49% 55%;
  background: #6cc4c7;
}

.circle::after {
  content: "";
  position: inherit;
  right: -50vmin;
  bottom: -50vmin;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background: #01363a;
}

.card {
  overflow: hidden;
  width: 360px;
  z-index: 3;
  margin: 0 auto;
  padding: 160px 60px 38px;
  border-radius: 1.25rem;
  background: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 100px 100px rgb(0 0 0 / 10%);
}

.card::before {
  content: "";
  position: absolute;
  background: #f8c157;
  top: -880px;
  left: 50%;
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  translate: -50% 0;
}

.card .logo {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  height: 64px;
  width: 64px;
  top: 30px;
  left: 50%;
  translate: -50% 0;
}

/* .card .logo i {
  font-size: 50px;
  color: #01363a;
  font-weight: 500;
} */

.card .logo img {
  width: 100px;
  border-radius: 50px;
}

h2 {
  font-family: "proxima-soft", sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 30px;
  color: #2a3444;
  text-decoration: none;
}

.form {
  margin: 0 0 30px;
  display: grid;
  gap: 18px;
}

.form > input,
.form > button {
  width: 100%;
  height: 50px;
  border-radius: 28px;
}
.form > input {
  border: 2px solid #f7f7f7;
  font-family: "Avenir", sans-serif;
  font-size: 16px;
  padding: 0 24px;
  color: #11274c;
  transition: all 0, 375s;
}

.form > input:hover {
  border: 2px solid #000;
}

.form > input::placeholder {
  color: #cac8c8;
}

.form > button {
  cursor: pointer;
  width: 100%;
  height: 50px;
  padding: 0 16px;
  background: #6cc4c7;
  color: #f7f7f7;
  border: 0;
  font-family: "Avenir", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 2px;
  transition: all 0.375s;
}

.form > button:hover {
  color: #fff;
  background: #01363a;
}

.card > footer {
  font-family: "Avenir", sans-serif;
  color: #7c7c7c;
}

.card > footer > a {
  color: #6cc4c7;
  transition: all 0.375ms;
}

.card > footer > a:hover {
  color: #01363a;
}

.errorBody{
  position: relative;
  z-index: 4;
  margin-bottom: 12%;
}

.errorBody h2{
  color: red;;
}