#masthead {
  display: none;
}

body {
  overflow-y: hidden;
}

.col-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
}

@media only screen and (max-width: 950px) {
  .col-container {
    grid-template-columns: 1fr;
  }

  .right-col {
    display: none;
  }
}

.left-col {
  background: #fff;
  text-align: center;
  grid-column: 1 / 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px 20px;
}

.left-col .logo {
  width: 100%;
  max-width: 300px;
  margin-bottom: 80px;
}

.left-col #loginform {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.left-col .input {
  width: 455px;
  height: 46px;
  background: white;
  padding-left: 15px;
}

.left-col .login-password,
.left-col .login-lost-password {
  margin-top: -10px;
}

.left-col .login-lost-password a {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #707070;
}

.left-col .button {
  width: 280px;
  height: 50px;
  background-color: var(--btn-bg-primary);
  color: var(--btn-color-primary);
  font-family: var(--btn-txt-font);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  text-transform: uppercase;
}

@media only screen and (max-width: 950px) {
  .left-col #loginform {
    width: 100%;
  }

  .left-col #loginform p {
    width: 100%;
    max-width: 350px;
  }

  .left-col .input {
    width: 100%;
  }

  .left-col .button {
    width: 100%;
    max-width: 250px;
  }
}

.right-col {
  width: 100%;
  background: #fff;
  text-align: center;
  grid-column: 2 / 3;
  background: url('https://app.nuveldys.com/wp-content/uploads/2024/04/login_v2-scaled-1.jpg');
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}

label {
  display: none;
}