@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  height: 100vh;
}

.image-container {
  flex: 1;
  background-image: url('../imgs/people_access.png');
  background-size: cover;
  background-position: center;
}

.login-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18rem;
}

.logo {
  position: absolute;
  top: 20px;
  left: 7%;
  transform: translateX(-50%);
  max-width: 200px;
}

h1 {
  font-family: 'Poppins', Arial;
  color: #333;
  margin-bottom: 2rem;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
}

input {
  font-family: 'Poppins', Arial;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

button {
  font-family: 'Poppins', Arial;
  background-color: #39B6B3;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.99rem;
}

.alert{
  padding: 10px;
  border:0px;
  color: #fff;
  display: flex;
  justify-content: space-between;
}

.alert-success {
  background-color: rgb(147, 215, 183);
  color: #0c6636;
}

.alert-danger {
  background-color: rgb(246, 139, 161);
  color: rgb(212, 37, 37);
}

.close-alert {
  padding: 3px;
  text-decoration: none;
  color:white;
  font-weight: bold;
  border: 1px solid rgb(232, 234, 235);
}

.etiqueta{
  color: #39B6B3;
}
.forgot-password {
  margin-top: 1rem;
  font-size: 0.9rem;
}
.title-1 {
  color: #39B6B3;
  text-align: center;
  font-family: 'Poppins', Arial;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 128.015%; /* 52.486px */
}

.title-2 {
  color: #193C6B;
  font-family: 'Poppins', Arial;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 128.015%;
}

@media (max-width: 768px) {
  body {
      flex-direction: column;
  }

  .image-container {
      display: none;
  }

  .login-container {
      padding: 1rem;
  }

  .logo {
      max-width: 150px;
      padding-left: 20px;;
  }

  h1 {
      font-size: 1.5rem;
  }

  input, button {
      font-size: 0.9rem;
  }
}