@charset "UTF-8";

@font-face {
  font-family: "Poppins";
  src: url("../Fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --mainFont: "Poppins";

  --mainCollor: #7d00fe;
  --secondCollor: #aa57ff;
  --thirdCollor: #dbb7ff;

  --green: #58cca0;
  --red: #f42a5e;
  --yellow: #f4e32a;
}

* {
  font-family: "Poppins", Arial, sans-serif;
}

body {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Configs dos inputs */
input {
  text-align: center;
  height: 50px;
  margin: 0;
  padding: 0 20px;
  background: #e8e8e8;
  border: 3px solid #e8e8e8;
}

input::placeholder {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  /* text-align: center; */
}

#senha {
  background: #e8e8e8;
  border: 3px solid #e8e8e8;
  height: 50px;
  width: 100%;
  padding-right: 0px;
  padding-left: 40px;
}

.login-form {
  margin: auto;
  /* max-width: 310px; */
  width: 310px;
  text-align: center;
}

input[type="text"],
input[type="password"],
textarea,
textarea.form-control {
  font-size: 16px;
  font-weight: 300;
  line-height: 50px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 20px;
}

textarea,
textarea.form-control {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 30px;
}

input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus,
textarea.form-control:focus {
  outline: 0;
  background: #d6d6d6;
  border: 3px solid #d6d6d6;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* config do olho */

#show_hide_password .input-group-addon {
  align-items: center;
  background: #e8e8e8;
  border: none;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

#eye {
  background-color: transparent;
  font-size: 16px;
}

/* Cores dos placeholders */
input[type="text"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
textarea:-moz-placeholder,
textarea.form-control:-moz-placeholder {
  color: #333;
}

input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
textarea.form-control:-ms-input-placeholder {
  color: #333;
}

input[type="text"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
textarea.form-control::-webkit-input-placeholder {
  color: #333;
}
/* Config do btn */
#btnLogin {
  margin: auto;
  display: block;
  margin-top: 10px;
  text-align: center;
  max-width: 150px;
  min-width: 120px;
  /* height: 50px; */
  /* margin: 0; */
  border-radius: 0%;
  padding: 0 20px;
  /* vertical-align: middle; */
  background: var(--mainCollor);
  border: 1px solid var(--mainCollor);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  height: 50px;
  font-weight: 300px;
  line-height: 50px;
  color: #fff;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  text-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 20px;
  transform: translate(-5%, -5%);
}

#btnLogin:hover {
  background: white;
  font-weight: bold;
  color: var(--mainCollor);
}

#btnLogin:active {
  background: white;
  font-weight: bold;
  color: var(--mainCollor);
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

button.btn:focus {
  background: white;
  font-weight: bold;
  color: var(--mainCollor);
}

button.btn:active:focus,
button.btn.active:focus {
  background: white;
  font-weight: bold;
  color: var(--mainCollor);
}

/* checkbox */

#checkboxStayConected {
  display: flex;
  justify-content: center;
}

#checkboxStayConected div {
  display: flex;
  align-items: center;
  color: black;
}

#checkboxStayConected input {
  margin: 0px 5px 0px 0px;
}

#checkboxStayConected label {
  margin: 0px;
  color: black;
}

.form-control {
  text-align: center;
  border-radius: 10px;
}
