html {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: white;
}

h2 {
  margin: 0;
  font-size: 22px;
}

body {
  font-family: 'Avenir', sans-serif;
  width: 100%;
  background-color: white !important;
}

.container {
  display: flex;
  flex-direction: row;
  gap: 120px;
  justify-content: center;
}

.media-image img {
  max-width: 477px;
  width: 100%;
}

.login-portal {
  display: flex;
  flex-direction: column;
}

.login-portal h2 {
  margin-bottom: 36px;
}

.logo-image {
  align-self: center;
}

.logo-image img {
  max-width: 354px;
  width: 100%;
}

.login {
  display: flex;
  flex-direction: row;
  width: 528px;
  gap: 35px;
}

.btn {
 height: 83px;
 width: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
 box-shadow: 0px 1px 9px rgba(108, 108, 108, 0.25);
 border-radius: 20px;
 cursor: pointer;
}

.btn img {
  height: 36px;
}

.cc {
  position: fixed;
  bottom: 30px;
  left: 30px;
}

.cc p {
  margin: 0;
  color: #818181;
  font-weight: 500;
}

@media screen and (max-width: 1180px) {
  html {
    align-items: flex-start;
    height: calc(100vh - 90px);
    margin-top: 90px;
  }

  body {
    padding-bottom: 160px;
  }

  .container {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .media-image {
    display: flex;
    justify-content: center;
  }

  .media-image img {
    max-width: 423px;
  }

  .login {
    gap: 29px;
    width: unset;
  }

  .logo-image img {
    max-width: 368px;
    padding: 58px 0 30px;
  }

  .login-group {
    padding: 0 90px;
  }

  .btn {
    height: 75px;
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .login-group {
    padding: 0 40px;
  }
}


@media screen and (max-width: 500px) {
  html {
    align-items: flex-start;
    height: calc(100vh - 83px);
    margin-top: 83px;
  }

  .media-image img {
    max-width: 287px;
  }

  .logo-image img {
    max-width: 269px;
    padding: 28px 0;
  }

  h2 {
    font-size: 18px;
  }

  .login-portal h2 {
    margin-bottom: 28px;
  }

  .login {
    gap: 12px;
  }

  .btn {
    height: 50px;
    width: 100%;
  }

  .btn img {
    height: 20px;
  }
 }

 @media screen and (max-width: 500px) and (max-height: 500px) {
  html {
    align-items: flex-start;
    height: calc(100vh - 50px);
    margin-top: 50px;
  }

  .media-image img {
    max-width: 200px;
  }

  .logo-image img {
    max-width: 230px;
    padding: 0;
  }

  h2 {
    font-size: 14px;
  }

  .login-portal h2 {
    margin-bottom: 16px;
  }

  .btn {
    height: 44px;
    width: 100%;
  }

  .cc {
    bottom: 10px;
    left: 10px;
  }

  .cc p {
   font-size: 10px;
  }
}

