.container {
  display: grid;
  height: 100vh;
  grid-template-columns: 1fr 1fr;
}

.login-div, .image-div, form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

form {
  gap: 15px;
}

.image-div img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: 100% 50%;
}

.barraFin img {
  width: 100%;
}

label {
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 15px;
}

input, 
select {
  background-color: rgb(241, 239, 239);
  border: none;
  border-radius: 10px;
  width: 300px;
  padding: 13px 0px 13px 10px;
}

select {
  color: grey;
}

input:focus{
  outline: none
}

.error-container {
  text-align: center;
  margin: 0;
}
p {
  margin: 0;
}
.error {
  color: red;
  font-size: 13px;
}
i {
  margin-right: 5px;
}
.forgot-password {
  text-align: right;
}

.forgot-password a {
  font-size: 0.9rem;
  color: #007bff;
  text-decoration: none;
}

.forgot-password a:hover {
  text-decoration: underline;
}

button {
  margin: 0px !important;
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.back-link:hover {
    text-decoration: underline;
}