/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  /* Cores utilizadas no código */
  --white-color: #ffffff;        /* Usado para fundos e bordas */
  --gray-color: #cccccc;         /* Usado em fundo e borda de elementos */
  --dark-gray-color: #333;       /* Usado em texto */
  --dark-green: #017143;         /* Usado em botões e destaque */
  --timeline-line: #0b7b5d;      /* Usado na linha da timeline */
  --bg-yellow: #F6D155;          /* Usado no fundo da timeline */
  --black-color: #000000;        /* Usado em texto */
  --verde-escuro: #0c5738e2;
  --cream-white: #f8f7ec;        /* Cor clara de fundo */


  /* Tamanhos de fonte */
  --font-size-s: 0.9rem;
  --font-size-n: 1rem;
  --font-size-m: 1.12rem;
  --font-size-l: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 2.3rem;

  /* Espessuras da fonte */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Raio da borda */
  --border-radius-s: 8px;
  --border-radius-m: 30px;
  --border-radius-circle: 50%;

  /* Largura máxima do site */
  --site-max-width: 1300px;
}
body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cream-white);
  /* background-image: url("../images/Contour Line.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;  */
}


body img{
  width: 100%;
  height: 100%;
}

.wrapper {
  position: relative;
  max-width: 470px;
  width: 100%;
  border-radius: 12px;
  padding: 20px 30px 120px;
  background: var(--dark-green);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.form.login {
  position: absolute;
  left: 50%;
  bottom: -86%;
  transform: translateX(-50%);
  width: calc(100% + 220px);
  padding: 20px 140px;
  border-radius: 50%;
  height: 102%;
  background: var(--white-color);
  transition: all 0.6s ease;
}

.wrapper.active .form.login {
  bottom: -15%;
  border-radius: 35%;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
}

.form header {
  font-size: 30px;
  text-align: center;
  color: var(--white-color);
  font-weight: 600;
  cursor: pointer;
}

.form.login header {
  color: var(--black-color);
  opacity: 0.7;
}

.wrapper.active .form.login header {
  opacity: 1;
}

.wrapper.active .signup header {
  opacity: 0.6;
}

.wrapper form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

form input {
  height: 60px;
  outline: none;
  border: none;
  padding: 0 15px;
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-gray-color);
  border-radius: 8px;
  background: var(--white-color);
}

.form.login input {
  border: 1px solid var(--black-color);
}

.form.login input:focus {
  box-shadow: 0 1px 0 #ddd;
}

form .checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox input[type="checkbox"] {
  height: 16px;
  width: 16px;
  accent-color: var(--timeline-line);
  cursor: pointer;
}

form .checkbox label {
  cursor: pointer;
  color: var(--white-color);
}

form a {
  color: var(--dark-gray-color);
  text-decoration: none;
}

form a:hover {
  text-decoration: underline;
}

form input[type="submit"] {
  margin-top: 15px;
  padding: none;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}

.form.login input[type="submit"] {
  background: var(--dark-green);
  color: var(--white-color);
  border: none;
}
  