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

body {
  background: #f0f0f0;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background-image: url("/static/image/fundo.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.field-error {
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 6px;
  background-color: #ffdddd; /* vermelho claro */
  border: 1px solid #ff8888;
  text-align: center;
}

.field-error p {
  color: #a60000; /* vermelho escuro */
  font-size: 16px;
  font-weight: 500;
}


.main_container {
  display: flex;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.left_panel {
  position: relative;
  background-color: #2d9596;
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
  color: white;
  overflow: hidden;
}

.left_panel .bg_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/static/image/fundo_barra_lateral.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.left_panel h1 {
  font-size: 48px;
  font-weight: bold;
  color: white;
}

.left_panel p {
  font-size: 25px;
  color: white;
  margin: 0;
}

.left_panel_text {
  align-self: anchor-center;
}

img {
  opacity: 40%;
}

.right_panel {
  background-color: #ffffff;
  width: 65%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.card {
  width: 100%;
  max-width: 500px;
}

.label_float label {
  display: block;
  margin-bottom: 5px;
  font-size: 20px;
  color: #666;
  font-weight: 500;
}

.label_float input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 7px;
  font-size: 18px;
  background-color: #f8f8f8;
  transition: border-color 0.3s ease;
  outline: none;
}

.label_float {
  position: relative;
  margin: 20px 0 20px 0;
}

.label_float input:focus {
  border-color: #2d9596;
  background-color: #fff;
}

button {
  width: 100%;
  background-color: #a8d5d8;
  color: #208b8d;
  border: none;
  padding: 12px;
  font-weight: 600;
  font-size: 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 20px 0;
  text-transform: uppercase;
}

button:hover {
  background-color: #94c7ca;
}

.justify_center {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

p {
  font-size: 20px;
  text-align: center;
  color: #666;
  margin: 0;
}

p a {
  color: #4285f4;
  text-decoration: none;
  font-weight: 500;
}

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

.fa-eye-slash,
.fa-eye {
  position: absolute;
  right: 12px;
  top: 35px;
  font-size: 14px;
  cursor: pointer;
  color: #999;
}

/* Responsividade */
@media (max-width: 768px) {
  .main_container {
    flex-direction: column;
    height: auto;
    max-width: 400px;
  }

  .left_panel,
  .right_panel {
    width: 100%;
  }

  .left_panel {
    padding: 30px;
    text-align: center;
  }

  .left_panel h1 {
    font-size: 36px;
  }

  .left_panel p {
    font-size: 16px;
  }
}
