  * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  font-family: Manrope, sans-serif;
}



.left-section {
  display: none;
}


@media (min-width: 768px) {
  .left-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  background-color: #0070C8;
  color: white;
  padding-top:20px;
}

.left-image {
  margin-top: auto;
  text-align: center;
}

.left-image img {
    margin-left:0;

  height: auto;
  object-fit: contain;
  /*box-shadow: 0px 4px 10px rgba(0,0,0,0.2);*/
}

.left-content {
  width: 400px;
  margin: 0 auto;
  text-align:center;
  margin-top: 4rem;
}

  /*.left-content {*/
  /*  text-align: center;*/
  /*  margin-top: 4rem;*/
  /*}*/

  .left-content h1 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }

  .left-content h2 {
    font-size: 1.4rem;
  }


}

.right-section {
  max-height: 100vh;
  overflow-y: auto;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top:50px;
}

.login-form {
  max-width: 400px;
  width: 100%;
  padding: 2rem;
}

.logo {
  /*width: 75%;*/
  display: block;
  margin: 0 auto 1rem auto;
}

.login-form h2 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group .icon {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.form-group input {
  width: 100%;
  padding: 0.75rem 0.75rem 0.75rem 2.5rem;
  background-color: #FAFCFE;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

button[type="submit"] {
  width: 100%;
  padding: 0.75rem;
  background-color: #0070C8;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #005fa3;
}


.footer-image {
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.footer-image img {
  width: 100%;
  height: 100px;
  display: block;
  object-fit: cover;
}


.error {
  color: red;
}
