@import url("https://fonts.cdnfonts.com/css/satoshi");

* {
  font-family: "Satoshi", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #eaf8f1;
}

.container {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
}

.left-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #d4f3e2;
  padding: 20px;
}

.left-section .logo {
  margin-right: auto;
}

.left-section .description {
  width: 500px;
  margin-top: auto;
  margin-bottom: auto;
  text-align: center;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 72px;
  border-radius: 50%;
}

.left-section footer {
  display: flex;
  width: 100%;
  justify-content: space-around;
  padding-bottom: 16px;
  margin-top: auto;
}

.left-section footer p {
  font-weight: 500;
  color: #394753;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

h5 {
  color: #205a52;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  margin: 0 24px;
  text-align: center;
}

.left-section .description img {
  width: 400px;
  height: 150px;
}

.right-section {
  flex: 2;
  padding: 40px;
  background-color: #f3faf9;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
}

input,
select {
  height: 48px;
  width: 100%;
  padding: 12px;
  margin-top: 4px;
  border: 1px solid #dadfe7;
  border-radius: 20px;
  background-color: #ffffff;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #394753;
}

form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group-row {
  display: flex;
  gap: 1rem; /* Space between inputs */
  margin-bottom: 1rem;
}

.form-group {
  flex: 1;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: bold;
}

button {
  padding: 15px 20px;
  background-color: #1e6f5c;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  width: 240px;
  margin: auto;
}

button:hover {
  background-color: #155f48;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #d4f3e2;
}

footer p {
  margin: 0;
}

.error-message {
  color: #d9534f; /* Vermelho para indicar erro */
  background-color: #f8d7da; /* Fundo vermelho claro */
  border: 1px solid #d9534f; /* Borda vermelha */
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 10px;
}

@media (max-width: 944px) {
  .left-section{
    display: none !important;
  }
  .right-section {
    flex: 1;
    padding: 20px;
  }
  .form-group-row {
    flex-direction: column;
  }
}
