/*
--- 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: #e67e22
- Tints:
#fdf2e9
#fae5d3
#eb984e

- Shades: 
#cf711f
#45260a

- 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

--- 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%;
}

body {
  font-family: "Rubik", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
  background-color: #f8fefc;
}
p{
  font-size: 2.4rem;
  margin-bottom: 6.4rem;
}
.text-hint{
  font-size: 1.4rem;
  color: #ced4da;
  /* color: #38d9a9; */

}
.container {
  /* background-color: #fae5d3; */
  max-width: 80rem;

  padding: 3.2rem 3.2rem;
  margin: 20rem auto;
}
.text-center{
  text-align: center;
}
.item-center{
  display:flex;
  
  align-items: center;
  justify-content: center;
justify-items:baseline;

  
}
.loging-box{
  border-radius: 12px ;
  background-color:#fff;
  max-width: 50rem;


  padding: 4.8rem;
  margin: 0 auto;
  box-shadow: 1px 5px 10px 5px rgba(0, 0, 0,0.07);
}
.mb-s {
  margin-bottom: 1.6rem;
}
.mb-m {
  margin-bottom: 2.4rem;
}
.mb-l {
  margin-bottom: 3.2rem;
}
.mb-xl {
  margin-bottom: 4.8rem;
}
.hide{
  

}
.label {
  display: block;
  font-size: 1.6rem;
  /* font-weight: 500; */
  margin-bottom: 8px !important;
}
.input-text {
  width: 100%;
  display: inline-block;
  padding: 16px 32px;
  border-radius: 4px;
  border: none;
  border-bottom: 3px solid transparent;
 
background-color: #f8f9fa;

transition: all 0.3s;

}
.input-text:focus{
  outline: none;
  border-bottom: 3px solid #20c997 ;
}
.btn{
  text-decoration: none;
  font-size:1.6rem;
  font-weight: 600;
  display: block;
  padding: 16px 32px ;
  width: 20rem;
border-radius: 5px;
background-color:#38d9a9;
outline-style: none;
border-style: none;
color: #fff;
transition: all 0.4s;
}
.btn:hover{
  background-color:#20c997;
 transform:translateY(-2px);

  
  box-shadow: 0px 0px 10px 10px rgba(0, 0, 0,0.05);
}