/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Configurações gerais */
body {
  font-family: Arial, sans-serif;
  background-color: lightblue;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Container do formulário de login */
.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* Caixa de login */
.login-box {
  display: flex;
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 800px;
}

/* Lado esquerdo (formulário de login) */
.login-left {
  padding: 40px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #73ccd4;
  color: #fff;
}

.login-left h2 {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 600;
}

.login-left form {
  display: flex;
  flex-direction: column;
}

.login-left label {
  font-size: 14px;
  margin-bottom: 5px;
}

.login-left input {
  padding: 10px;
  margin-bottom: 20px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f1f6f9;
  transition: border-color 0.3s;
}

.login-left input:focus {
  border-color: #73ccd4;
  outline: none;
}

.login-left button {
  background-color: lightblue ;
  color: black;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.login-left button:hover {
  background-color: #fff;
}

/* Opções do login (lembrar-me, esqueceu a senha) */
.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #ccc;
}

.login-options label {
  display: flex;
  align-items: center;
}

.login-options input {
  margin-right: 10px;
}

/* Lado direito (informações extras) */
.login-right {
  padding: 40px;
  width: 50%;
  background-color: #f1f6f9;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-right h2 {
  font-size: 24px;
  font-weight: 600;
  color: #73ccd4;
  margin-bottom: 15px;
}

.login-right p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.signup-btn {
  padding: 10px 20px;
  background-color: #73ccd4;
  color: #fff;
  text-align: center;
  font-size: 16px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.signup-btn:hover {
  background-color: lightblue;
}

/* Responsividade */
@media screen and (max-width: 768px) {
  .login-box {
      flex-direction: column;
  }

  .login-left,
  .login-right {
      width: 100%;
      padding: 20px;
  }
}

a{
  text-decoration: none;
}