:root {
  --color_border: #d5d5d5;
  --radiusInput: 5px;
}

body {
  font: 15px/22px "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, Verdana, sans-serif;
  color: black;
  margin: 0;
  background: #f5f5f5;
}
a, a:hover {
  cursor: pointer;
  text-decoration: none;
  color: black;
}
.loginFormBorder {
  width: 100%;
  height: 400px;
  max-width: 400px;
  max-height: 700px;
  border-radius: 8px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--color_border);
  background: white;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-content: center;
  flex-wrap: nowrap;
  box-shadow: 0px 0px 20px 0px #00000012;
}
.centerLoginForm {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-top: 5%;
  margin-bottom: 5%;
}
@media only screen and (max-width: 600px) {
.loginFormBorder {
  width: 100%;
  height: 100%;
  max-width: 100%;
  border-radius: 0;
  background: none;
  border: 0;
  
  box-shadow: 0px 0px 0px 0px #00000000;
}
.centerLoginForm {
  display: flex;
  align-items: stretch;
  margin-top: 0;
  margin-bottom: 0;
  flex-direction: column;
  background: white;
}
}

.line {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: var(--color_border);
}
.padding_small {
  padding: 3px;
}
.center_formLogin {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-top: 5%;
  margin-bottom: 5%;
}
.fcLogin {
  display: block;
  width: 100%;
  min-width: 300px;
  padding: 5px 10px;
  height: 30px;
  font-size: 17px;
  line-height: 1.6;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #cbcbcc;
  border-radius: var(--radiusInput);
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  outline: 0;
}
.fcLogin:focus {
  border: 1px solid #1a73e8ab;
}
.mrgBottom {
  margin-bottom: 5px;
}
.em {
  font-size: 17px;
}
.fcLogin[type="email"]:focus::-webkit-input-placeholder {
  color: grey;
  opacity: 1;
}
.centerVertcaleLoginForm {
  display: flex;
  align-items: center;
  flex-direction: column;
  align-content: center;
  flex-wrap: nowrap;
  justify-content: center;
  padding: 10% 0;
}

.fcLoginBtn {
  display: block;
  min-width: 100px;
  padding: 5px 10px;
  font-size: 17px;
  color: white;
  background-color: #399ff0;
  background-clip: padding-box;
  border: 1px solid #54aeef;
  border-radius: var(--radiusInput);
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  outline: 0;
  cursor: pointer;
  transition: all .2s;
} 
.fcLoginBtnStop {
  display: block;
  min-width: 100px;
  padding: 5px 10px;
  font-size: 17px;
  color: black;
  /* background-color: #2b93f5; */
  background-clip: padding-box;
  border: 1px solid #cbcbcc;
  border-radius: var(--radiusInput);
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  outline: 0;
  cursor: pointer;
  transition: all .2s;
}
.fcLoginBtnStop:hover {
  background-color: #e0e0e0;
  cursor: pointer;
}
.fcLoginBtn:hover {
  background-color: #0084ff;
  cursor: pointer;
}    
.footerFormLogin {
  width: 100%;
  text-align: -webkit-right;
  margin-right: 40px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}
.error {
  background: #ffb3b3;
  width: 100%;
  border-radius: 3px;
  padding: 5px 10px;
}
nav {
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
  align-items: center;
}
.sectionNavbar {
  background: #ffffffb8;
  padding: 10px;
  border-bottom: 1px solid #e2e2e2;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
}
.sectionBody {
  background: white;
  padding: 10px;
  margin: 60px 190px;
  border-radius: 3px;
  border: 1px solid #e7e7e7;
}

::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-thumb {
  background: #c4c4c4;
  border-radius: 0px;
  border: 1px solid #7f7f7f30;
  box-shadow: inset 0px 1px 12px 11px #d9d9d9;
}


.header_line_login {
  color: #514f4f;
  font-size: 15px;
  padding: 5px 10px;
}
