@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap');

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans', sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
}

.login-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-content {
  display: flex;
  width: 80vw;
  max-width: 1200px;
  height: 70vh;
  background: white;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.login-image, .login-form {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.login-image {
  background: #1A5E82;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-login {
  width: 100%;
  padding: 40px;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-login h1 {
  color: #2f2841;
  font-weight: 800;
  margin-bottom: 20px;
}

.textfield {
  width: 100%;
  margin-bottom: 15px;
}

.textfield label {
  display: block;
  color: #2f2841;
  margin-bottom: 5px;
}

.textfield input {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  font-size: 14pt;
  outline: none;
}

.btn-login {
  width: 100%;
  padding: 15px;
  margin-top: 20px;
  border: none;
  border-radius: 5px;
  outline: none;
  text-transform: uppercase;
  font-weight: 800;
  color: white;
  background: #1A5E82;
  cursor: pointer;
  box-shadow: 0px 5px 20px -5px #1A5E82;
}

@media only screen and (max-width: 768px) {
  .login-content {
    flex-direction: column;
    width: 90vw;
    height: auto;
  }

  .login-image {
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .login-image img {
    width: 50%;
    max-width: 250px;
    height: auto;
  }

  .login-form {
    width: 100%;
    height: auto;
    padding: 20px 0;
  }

  .card-login {
    width: 90%;
  }
}