
@import url('https://fonts.googleapis.com/css2?family=Aoboshi+One&family=Cal+Sans&family=Outfit:wght@100..900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
font-family: 'Aoboshi One', sans-serif;
}

body {
  background-color: #ffffff;
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
}

.container {
  display: flex;
  width: 100vw;
  height: 100vh;
}

.imagem-lateral {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 40px;
  color: #f2f1EA;
  overflow: hidden;
  background: url('/Início/imgs/imagemregistro.jpg') center/cover no-repeat;
}

.imagem-lateral::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 90, 112, 0.15), rgba(255, 102, 110, 0.15));
  backdrop-filter: blur(6px);
  -webkit-mask-image: linear-gradient(to bottom, rgba(250, 136, 136, 0.13) 4%, rgb(87, 11, 24) 30%);
  mask-image: linear-gradient(to bottom, rgba(241, 76, 76, 0.13) 4%, rgb(241, 62, 122) 30%);
  z-index: 1;
}

.texto-lateral {
  position: relative;
  z-index: 2;
  text-align: left;
  margin-bottom: 0;
  padding: 3rem;
}

.texto-lateral h2 {
  font-family: 'Cal Sans', sans-serif;
  font-size: 4rem;
  font-weight: 100;
  margin-bottom: 12px;
  letter-spacing: 3px;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.texto-lateral p {
  font-family: 'Cal Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 1px;
  max-width: 350px;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.formulario-lateral {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 70px;
  background-color: #ffffff;
}

.caixa-formulario {
  width: 100%;
  max-width: 380px;
}

.caixa-formulario h1 {
    width: 350px;
  font-size: 32px;
  font-weight: 100;
  color: #c2185b;
  margin-bottom: 6px;
}

.caixa-formulario h1 .destaque {
  color: #e08bb0;
}

.subtitulo {
  font-size: 14px;
  color: #e08bb0;
  margin-bottom: 30px;
}

.campo {
  margin-bottom: 20px;
}

.campo label {
  display: block;
  font-size: 16px;
  color: #d46a94;
  margin-bottom: 6px;
  font-weight: 400;
}

.campo input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cccccc;
  border-radius: 999px;
  font-size: 16px;
  color: #333333;
  outline: none;
  transition: border-color 0.2s ease;
}

.campo input:focus {
  border-color: #c2185b;
}

.linha-entre {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.botao-registro {
  width: 100%;
  padding: 14px;
  background-color: #f8bfd6;
  color: #7a1240;
  border: none;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 100;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 20px;
}

.botao-registro:hover {
  background-color: #f5a9c6;
}

.texto-login {
  font-size: 0.85rem;
  color: #555555;
  text-align: center;
  margin-top: 16px;
}

.texto-login a {
  color: #c2185b;
  text-decoration: underline;
  font-weight: 600;
  transition: text-decoration 0.2s ease, opacity 0.2s ease;
}

.texto-login a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.divisor {
  display: flex;
  align-items: center;
  text-align: center;
  color: #999999;
  font-size: 0.85rem;
  margin: 24px 0;
}

.divisor::before,
.divisor::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e0a3bf;
}

.divisor:not(:empty)::before {
  margin-right: .5em;
}

.divisor:not(:empty)::after {
  margin-left: .5em;
}

.botao-google {
  width: 100%;
  padding: 12px;
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #dddddd;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.botao-google img {
  width: 18px;
  height: 18px;
}

.botao-google:hover {
  background-color: #f7f7f7;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .imagem-lateral {
    flex: none;
    height: 30vh;
    padding: 20px;
    align-items: flex-end;
  }

  .texto-lateral h2 {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }

  .texto-lateral p {
    font-size: 0.85rem;
  }

  .formulario-lateral {
    flex: 1;
    padding: 30px 20px;
    align-items: flex-start;
  }
}

@media (max-width: 1200px) {
  .texto-lateral h2 {
    font-size: 3.2rem;
  }
  
  .formulario-lateral {
    padding: 40px 50px;
  }
}

@media (max-width: 992px) {
  .texto-lateral {
    padding: 1.5rem;
  }

  .texto-lateral h2 {
    font-size: 2.5rem;
  }

  .texto-lateral p {
    font-size: 1.1rem;
  }

  .formulario-lateral {
    padding: 30px 40px;
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }

  .imagem-lateral {
    flex: none;
    height: 35vh;
    padding: 20px;
    align-items: flex-end;
    justify-content: center;
  }

  .texto-lateral {
    padding: 0;
    text-align: center;
  }

  .texto-lateral h2 {
    font-size: 2.2rem;
    margin-bottom: 6px;
  }

  .texto-lateral p {
    font-size: 1rem;
    max-width: 100%;
  }

  .formulario-lateral {
    flex: none;
    min-height: 65vh;
    padding: 40px 20px;
    align-items: flex-start;
    margin-top: 30px;
  }

  .caixa-formulario {
    max-width: 100%;
  }
}


@media (max-width: 360px) {
  .container {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }

  .imagem-lateral {
    flex: none;
    height: 25vh;
    padding: 15px;
    align-items: center;
    justify-content: center;
  }

  .texto-lateral {
    padding: 0;
    text-align: center;
  }

  .texto-lateral h2 {
    font-size: 1.6rem;
    margin-bottom: 4px;
    letter-spacing: 1px;
  }

  .texto-lateral p {
    font-size: 0.8rem;
    max-width: 100%;
  }

  .formulario-lateral {
    flex: none;
    padding: 20px 15px;
    align-items: flex-start;
    margin-top: 15px;
    background-color: #ffffff;
  }

  .caixa-formulario {
    width: 100%;
    max-width: 100%;
  }

  .caixa-formulario h1 {
    font-size: 22px;
    line-height: 1.2;
    width: 100%;
  }

  .subtitulo {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .campo {
    margin-bottom: 12px;
  }

  .campo label {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .campo input {
    padding: 10px 14px;
    font-size: 14px;
  }

  .linha-entre {
    margin-bottom: 15px;
    font-size: 0.75rem;
  }

  .botao-registro {
    padding: 12px;
    font-size: 0.85rem;
    margin-top: 10px;
  }

  .divisor {
    margin: 15px 0;
    font-size: 0.75rem;
  }

  .botao-google {
    padding: 10px;
    font-size: 0.8rem;
  }

  .texto-login {
    font-size: 0.75rem;
    margin-top: 12px;
  }
}

@media (max-width: 360px) {
  .imagem-lateral {
    height: 30vh;
  }

  .texto-lateral h2 {
    font-size: 1.8rem;
  }

  .texto-lateral p {
    font-size: 0.85rem;
  }

  .caixa-formulario h1 {
    font-size: 26px;
  }

  .subtitulo {
    margin-bottom: 20px;
  }

  .campo input {
    padding: 10px 14px;
    font-size: 14px;
  }

  .botao-registro, 
  .botao-google {
    padding: 10px;
    font-size: 0.85rem;
  }
}
