/*
  Variáveis
*/

:root {
  --main-color: #407BFF;
  --link-color: #666666;
  --text1: #999999;
  --highlight-text: #333333;
  --input-text: #555555;
  --white-color: #FFFFFF;
  --points-list: #CCCCCC;
  --line-input: #D9D9D9;
}

/*
  Fonts
*/

@font-face {
  font-family: Anton;
  src: url('../../fonts/Login/Anton/Anton-Regular.ttf')
}

/*
  empty styles
*/

* {
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  font-family: Anton, 'Times New Roman', Times, serif;
}

ul, li {
  margin: 0;
  color: var(--points-list);
} 

input, button {
  outline: none !important;
  border: none;
}

button:hover {
  cursor: pointer;
}

/*
  utilities
*/

.text1{ 
  font-family: Anton;
  font-size: 15px;
  color: var(--text1);
  line-height: 1.5;
}

.text2{ 
  font-family: Anton;
  font-size: 15px;
  color: var(--main-color);
  line-height: 1.5;
}

.margin-bottom-35 {
  margin-bottom: 35px;
}

.margin-top-35 {
  margin-top: 35px;
}

.margin-bottom-8 {
  margin-bottom: 8px;
}

.margin-top-8 {
  margin-top: 8px;
}

.margin-left-50 {
  margin-left: 50px;
}

/*
  Login
*/

.container {
  width: 100;
  margin: 0 auto;
}

.container-login {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-color: var(--white-color);
}

.wrap-login {
  width: 370px;
  margin-right: 50px;
  background-color: var(--white-color);
}

/*
  Form
*/

.login-form {
  width: 100%;
}

.login-form-title {
  display: block;
  font-family: Anton;
  font-size: 39px;
  color: var(--highlight-text);
  line-height: 1.2;
  text-align: center;
}

/*
  Input
*/

.wrap-input {
  width: 100%;
  position: relative;
  border-bottom: 2px solid var(--line-input);
}

.input-form {
  font-family: Anton;
  font-size: 18px;
  color: var(--input-text); 
  line-height: 1.2;
  display: block;
  width: 100%;
  height: 52px;
  background: transparent;
  padding: 0 5px;
}

.focus-input-form {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input-form::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  transition: all 0.4s;
  background-color: var(--main-color);
}

.focus-input-form::after {
  font-family: Anton;
  font-size: 18px;
  color: var(--text1);
  line-height: 1.2;
  content: attr(data-placeholder);
  display: block;
  width: 100%;
  position: absolute;
  top: 15px;
  left: 0px;
  padding: 0px;
  transition: all 0.4s;
}

.input-form:focus + .focus-input-form::after {
  top: -20px;
  font-size: 15px;
}

.input-form:focus + .focus-input-form::before {
  width: 100%;  
}

.has-val.input-form + .focus-input-form::after {
  top: -20px;
  font-size: 15px;
}

.has-val.input-form + .focus-input-form::before {
  width: 100%;  
}


/*
  button
*/

.container-login-form-btn {
  width: 100%;
  display: flex;
  justify-content: center;
}

.login-form-btn {
  font-family: Anton;
  font-size: 16px;
  color: var(--white-color);
  line-height: 1.2;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;
  background-color: var(--main-color);
  border-radius: 5px;
  transition: all 0.4s;
}

.login-form-btn:hover {
  background-color: var(--highlight-text);
}

/*
  Links - Login utils
*/

a {
  font-family: Anton;
  font-size: 14px;
  line-height: 1.7;
  color: var(--link-color);
  margin: 0px;
  transition: all 0.4s;
}

a:focus {
  outline: none !important;
}

a:hover {
  text-decoration: none;
  color: var(--highlight-text);
}

.login-utils {
  margin-top: 20px;
}

.login-utils li {
  position: relative;
  margin-top: 10px;
}

