/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: "Poppins-Regular";
  src: url("../fonts/poppins/Poppins-Regular.ttf");
}

@font-face {
  font-family: "Poppins-Bold";
  src: url("../fonts/poppins/Poppins-Bold.ttf");
}

@font-face {
  font-family: "Poppins-Medium";
  src: url("../fonts/poppins/Poppins-Medium.ttf");
}

@font-face {
  font-family: "Montserrat-Bold";
  src: url("../fonts/montserrat/Montserrat-Bold.ttf");
}

/*//////////////////////////////////////////////////////////////////
[ RESET / BASE ]*/

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

html, body {
  height: 100%;
  font-family: "Poppins-Regular", sans-serif;
  background: #f7f9fa;
  color: #333;
  line-height: 1.6;
}

a {
  font-size: 14px;
  color: #57b846;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #333;
}

h1,h2,h3,h4,h5,h6 {
  margin: 0;
  font-family: "Poppins-Bold", sans-serif;
}

p {
  font-size: 15px;
  color: #666;
  margin: 0;
}

/* Inputs */
input, textarea, button {
  border: none;
  outline: none;
  font-family: inherit;
}

::placeholder {
  color: #aaa;
  transition: opacity 0.3s;
}

:focus::placeholder {
  opacity: 0.3;
}

button {
  background: transparent;
  cursor: pointer;
}

/*//////////////////////////////////////////////////////////////////
[ Utility ]*/

.txt1 {
  font-size: 13px;
  color: #999;
}

.txt2 {
  font-size: 13px;
  color: #666;
}

/*//////////////////////////////////////////////////////////////////
[ Layout Login ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(135deg, #04b00111, #072d00);
}

.wrap-login100 {
  width: min(960px, 95%);
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding:2rem;
  gap: 2rem;

}

/*//////////////////////////////////////////////////////////////////
[ Imagem ]*/

.login100-pic {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login100-pic img {
  max-width: 100%;
  height: auto;
}

/*//////////////////////////////////////////////////////////////////
[ Formulário ]*/

.login100-form {
  flex: 1;
  max-width: 350px;
}

.login100-form-title {
  font-size: clamp(22px, 4vw, 28px);
  color: #222;
  text-align: center;
  align-items: center;
  margin-bottom: 2rem;
}

/* Input */
.wrap-input100 {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
}

.input100 {
  font-size: 15px;
  color: #333;
  width: 100%;
  background: #f0f0f0;
  height: 52px;
  border-radius: 25px;
  padding: 0 3rem 0 3rem;
  transition: background 0.3s, box-shadow 0.3s;
}

.input100:focus {
  background: #fff;
  box-shadow: 0px 0px 8px rgba(87, 184, 70, 0.4);
}

/* Ícone */
.symbol-input100 {
  position: absolute;
  top: 50%;
  left: 1.2rem;
  transform: translateY(-50%);
  color: #999;
  transition: color 0.3s;
}

.input100:focus ~ .symbol-input100 {
  color: #57b846;
}

/*//////////////////////////////////////////////////////////////////
[ Botão ]*/

.container-login100-form-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.login100-form-btn {
  font-family: "Montserrat-Bold";
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  height: 52px;
  border-radius: 25px;
  background: #57b846;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
}

.login100-form-btn:hover {
  background: #2a5298;
  transform: translateY(-2px);
  box-shadow: 0px 6px 15px rgba(0,0,0,0.1);
}

/*//////////////////////////////////////////////////////////////////
[ Responsivo ]*/

@media (max-width: 992px) {
  .wrap-login100 {
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }

  .login100-pic {
    display: none;
  }

  .login100-form {
    max-width: 100%;
  }
}
