:root {
  --black-dark: #000;
  --green-light: #e9f8e5;
  --background-color: #fcfeff;
  --border-color: #73895d;
  --font-family-aleo: "Aleo", sans-serif;
  --font-family-poppins: "Poppins", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.img-fundo {
  position: absolute; 
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(./Imagens/conjunto-de-1-a-10-numeros.avif);
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  filter: blur(5px);
  -webkit-filter: blur(5px);
}

body,
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  z-index: 1;
}

.container {
  background-color: var(--green-light);
  width: 960px;
  height: 540px;
  padding-left: 54.48px;
  gap: 52px;
  flex-shrink: 0;
  box-shadow: 163px 309px 98px 0px rgba(0, 0, 0, 0),
    105px 198px 90px 0px rgba(0, 0, 0, 0.03),
    59px 111px 76px 0px rgba(0, 0, 0, 0.09),
    26px 49px 56px 0px rgba(0, 0, 0, 0.15),
    7px 12px 31px 0px rgba(0, 0, 0, 0.18);
}

img {
  width: 374px;
  height: 375.5px;
  flex-shrink: 0;
}

.containerForm {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 25px;
  width: 480px;
  height: 540px;
  flex-shrink: 0;
  border-radius: 25px 0px 0px 25px;
  background-color: var(--background-color);
}

.img-titulo {
  display: flex;
  align-items: center;
  margin-top: 120px;
}

.img-titulo img {
  width: 25.48px;
  height: 25.48px;
  stroke-width: 8.25px;
  margin-right: 8px;
}

h1 {
  color: var(--black-dark);
  font-family: var(--font-family-aleo);
  font-size: 25px;
  font-weight: 400;
  opacity: 0.9;
}

form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

p {
  color: var(--black-dark);
  font-family: var(--font-family-poppins);
  font-size: 15px;
  font-weight: 250;
  opacity: 0.8;
}

input {
  width: 379.17px;
  height: 34.27px;
  border-radius: 20px;
  border: 2.5px solid rgba(0, 0, 0, 0.5);
  padding: 0 15px;
}

input::placeholder {
  color: var(--black-dark);
  font-family: var(--font-family-poppins);
  font-size: 10px;
  font-weight: 400;
  opacity: 0.5;
}

form button {
  width: 375px;
  height: 35px;
  flex-shrink: 0;
  border-radius: 30px 20px;
  background-color: #73895d;
  margin-top: 30px;
  color: var(--background-color);
  font-family: var(--font-family-poppins);
  font-size: 11px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  border: #73895d;
  cursor: pointer;
}

form button:hover{
  background-color: #95C962;
}

.mensagem-sucesso,
.mensagem-error {
  display: flex;
  padding: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 441.5px;
  height: 143px;
  border-radius: 16px;
  background: rgba(115, 137, 93, 0.95);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: var(--font-family-aleo);
  padding-top: 8px;
  text-align: center;
  display: none;
  overflow: hidden;
}

.mensagem-sucesso p,
.mensagem-error p {
  color: #FFF;
  font-family: var(--font-family-aleo);
  font-size: 20px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  text-transform: capitalize;
}

.mensagem-sucesso p b{
  color: #000;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}


.mensagem-sucesso button,
.mensagem-error button{
  border-radius: 15px 10px;
  background-color: #1e1e1e;
  width: 68px;
  height: 39.5px;
  color: var(--background-color);
  text-align: center;
  font-family: var(--font-family-poppins);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  margin-top: 15px;
  border: #1e1e1e;
}

.mensagem-sucesso button:hover{
  background-color:#585050;
}

.mensagem-error {
  background: rgba(137, 93, 93, 0.86);
  width: 450.5px;
}

.mensagem-error p b {
  color: #770000;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.mensagem-error button {
  background-color:  #770000;
}

.mensagem-error button:hover{
  background-color: #E40000;
}
