:root {
  --clr-dark: #0c2014;
  --clr-green: #497869;
  --clr-gray: #9b9b9b;
  --clr-light-gray: #c1c1c1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Archivo', serif;
}

h1 {
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  margin-top: 12px;
}

.login {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  height: 100%;
  min-height: 100vh;
}

.login-col-1 {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  width: 50%;
  padding: 0 20px;
  background-color: var(--clr-dark);
}

.login-col-1 img {
  max-height: 47vh;
  max-width: 100%;
}

.login-col-2 {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}

.middle-elements {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  gap: 20px;
  width: 100%;
}

.login-logo {
  width: 80px;
}

.login-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 600px;
  margin-top: 50px;
}

.login-form input::placeholder {
  font-size: 19px;
  color: var(--clr-gray);
} 

.login-input {
  border: none;
  border-bottom: 1.5px solid var(--clr-light-gray);
  width: 100%;
  padding-bottom: 10px;
  font-size: 18px;
  height: 40px;
  font-size: 18px;
  margin-bottom: 10px;
  outline: none;
}

#submit-btn {
  color: #fff !important;
  background-color: var(--clr-dark) !important;
  font-size: 18px !important;
  height: 64px !important;
  line-height: 64px !important;
  width: 250px !important;
  margin-top: 30px !important;
  border-radius: 50px !important;
  transition: 0.3s !important;
  cursor: pointer !important;
}

#submit-btn:hover {
  background-color: var(--clr-green) !important;
}

.reset-link {
  text-decoration: none;
  color: var(--clr-dark); 
  font-weight: 500;
  cursor: pointer !important;
}

.main-website {
  color: var(--clr-gray);
}

@media (max-width: 780px) {
  .login {
    display: flex;
    flex-direction: column-reverse;
  }

  .login-col-1,
  .login-col-2 {
    width: 100%;
  }

  .login-col-1 {
    flex-direction: row;
  }

  .login-col-1 img {
    width: 50%;
  }
}
