* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  font-family: "Roboto Flex", sans-serif;
}

body {
  color: #032c1f;
  position: relative;
}

/*********************************/
/******  NOTIFICATION  ***********/
/*******************************/

.message-section {
  background-color: #fff;
  width: fit-content;
  padding: 2.4rem 4.8rem;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 999;
  box-shadow: 3px -3px 10px rgba(0, 0, 0, 0.1), -3px 3px 10px rgba(0, 0, 0, 0.1);
}

.message {
  font-size: 1.4rem;
  line-height: 1.5;
  display: none;
}

/*********************************/

.img-container {
  text-align: center;
  margin-bottom: 2rem;
}

.img-container p {
  font-size: 1.6rem;
}

.logo {
  width: 5.2rem;
}

.login-container {
  background-color: #b5ded2;
  min-height: 100vh;
  padding: 3.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.content-section {
  text-align: center;
  margin-bottom: 3rem;
}

.headline-text {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.subtext {
  font-size: 1.2rem;
  line-height: 1.7;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  max-width: 450px;
  margin: 0 auto;
}

.form-div {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.form-section label {
  font-size: 1.2rem;
  display: inline-block;
  margin-bottom: 1.2rem;
}
input {
  width: 100%;
  padding: 0.8rem;
}

input::placeholder {
  font-size: 1rem;
  text-transform: capitalize;
}

.extras {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  justify-content: space-between;
}

a:link,
a:visited {
  color: #032c1f;
  text-decoration: none;
}

a:hover,
a:active {
  color: #054934;
  text-decoration: underline;
}

button {
  background-color: #229d77;
  border: none;
  padding: 1rem 2rem;
}

button:hover {
  cursor: pointer;
  background-color: #054934;
  box-shadow: 5px 5px 0px rgba(3, 44, 31, 0.3);
}

.login-img {
  display: none;
}

@media (min-width: 900px) {
  html {
    font-size: 11px;
  }
  body {
    display: flex;
  }
  main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    min-height: 100vh;
    justify-content: center;
    padding: 9.6rem 4.8rem;
  }

  .login-container {
    min-height: 80vh;
  }

  .login-img {
    display: inline-block;
    background-image: linear-gradient(
        rgba(181, 222, 210, 0.2),
        rgba(181, 222, 210, 0.2)
      ),
      url(../images/Login-img.jpg);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
  }
  .signin-img {
    display: inline-block;
    background-image: linear-gradient(
        rgba(181, 222, 210, 0.2),
        rgba(181, 222, 210, 0.2)
      ),
      url(../images/signin-img.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
  }
}

@media (min-width: 1500px) {
  html {
    font-size: 12px;
  }
}

/* Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/
