/*
--- 01 TYPOGRAPHY SYSTEM

- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Font weights
Default: 400
Medium: 500
Semi-bold: 600
Bold: 700

- Line heights
Default: 1
Small: 1.05
Medium: 1.2
Paragraph default: 1.6

- Letter spacing
-0.5px
0.75px

--- 02 COLORS

- Primary: #2DA884
- Tints:
#96d4c2
#34fac0
#09221a

- Shades: 


- Accents:
- Greys

#888
#767676 (lightest grey allowed on #fff)
#6f6f6f (lightest grey allowed on #fdf2e9)
#555
#333

--- 05 SHADOWS

0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);

--- 06 BORDER-RADIUS

Default: 9px
Medium: 11px
max: 15px
--- 07 WHITESPACE

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  /* font-size: 10px; */
  /* 10px / 16px = 0.625 = 62.5% */
  /* Percentage of user's browser font-size setting */
  font-size: 62.5%;
  /* overflow: hidden; */
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
}

.login-continer {
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.login-img {
  background-image: url("../../img/login/login.jpeg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-top-left-radius: 3rem;
  border-bottom-left-radius: 3rem;
}

.login {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 3.6rem;
}

.login-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  text-transform: capitalize;
  gap: 2.6rem;
  color: white;
  border-radius: 11px;
  width: 80%;
  background-color: #2da884;
}

#errorlogin {
  text-align: center;
  color: red;
  font-size: 1.6rem;
  font-weight: 600;
}

.login .login-content h1 {
  font-size: 4rem;
  align-self: center;
}

.login label {
  display: block;
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.pass-btn {
  margin-right: auto;
}

input {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.6rem;
  font-family: inherit;
  border: none;
  background-color: white;
  border-radius: 9px;
}

.lpass {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.log-btn {
  text-align: center;
}

.log-btn button {
  border: none;
  outline: none;
  background-color: white;
  padding: 1.6rem 3.2rem;
  width: 100%;
  border-radius: 11px;
  cursor: pointer;
  color: #2da884;
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 1.2rem;
}

.log-btn button:hover,
.log-btn button:active {
  background-color: #09221a;
  color: white;
}

input:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
}

.fpass:link,
.fpass:visited {
  color: white;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
}

.slog {
  font-size: 1.6rem;
  font-weight: 600;
}

.slog span {
  color: #09221a;
}

.slog a {
  color: #2da884;
}

/* password buton  */

.pass-btn {
  background: none;
  color: white;
  outline: none;
  border: none;
  width: 2.3rem;
  height: 2.3rem;
  cursor: pointer;
}

.pass-icon {
  width: 2.3rem;
  height: 2.3rem;
}

.pass-icon[name="eye-outline"] {
  display: none;
}

a:hover,
a:active,
.fpass:hover,
.fpass:active,
.pass-btn:hover,
.pass-btn:active {
  color: #09221a;
}
