/*RESET NORMALIZE*/
* {
  font-family: "Open Sans", sans-serif;
}

p {
  margin: 0;
}

/*DEFAULT LOAD*/
.ajax_load {
  display: none;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.gif_logo {
  text-align: center;
  position: fixed;
  left: 0px;
  right: 0px;
  top: 30%;
  bottom: 0px;
}

.ajax_load_box {
  margin: auto;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.ajax_load_box_title {
  margin-top: 15px;
  font-weight: bold;
  font-size: 1.125rem;
}

/*LOGIN*/
.login {
  background: #3e84c9;
  color: var(--color-default);
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 30px 0;
  overflow-x: scroll;
}

.login_box {
  width: 400px;
  max-width: 90%;
  margin: auto;
  padding: 35px;
  background: #ffffff;
}

.login_box form {
  display: block;
  margin: 0 0 20px 0;
}

.login_box .hl {
  text-align: center;
  font-size: var(--font-max);
}

.login_box label {
  display: block;
  margin-bottom: 20px;
}

.login_box label .field {
  display: block;
  font-size: var(--font-small);
  font-weight: bold;
}

.login_box label input {
  border: none;
  border-bottom: 1px solid #1D2025;
  outline: none;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-size: var(--font-normal);
}

.login_box button {
  display: block;
  cursor: pointer;
  width: 100%;
  padding: 10px;
  border: none;
  color: #ffffff;
  font-size: var(--font-normal);
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
}

.login_box footer {
  text-align: center;
  font-size: var(--font-min);
  font-weight: 300;
}

.login_box footer a {
  display: block;
  font-size: var(--font-normal);
  color: var(--color-green);
  text-decoration: none;
  font-weight: bold;
  margin-top: 5px;
}

.login_box footer a:hover {
  color: var(--hover-color-green);
}

.box-container{
  max-width: 480px;
  position: fixed;
  bottom:-450px;
}

.input-group-text{
  min-width: 43.78px;
}

.box {
  background-color: rgba(6, 247, 247, 0.021);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  width: 100%;
  box-shadow: 0 0 25rem 0 #39AED9;
  padding: 0px 5px;
  border-radius: 5px;
  transition-property: all;
  transition-duration: 1.5s;
}

input[type=password], input[type=text], button {
  height: 50px;
  opacity: 100%;
  background-color: #f7f7f7;
}

.btn-blue{
  background-color: #e40613;
  color:#FFF;
  font-size: 1.25em;
  border-radius: 8px;
}

.btn-blue:hover{
  background-color: #ff1a37;
  color:#FFFFFF;
}

/*MESSAGES*/
.message {
  color: #ffffff;
  font-size: var(--font-normal);
  font-weight: var(--weight-strong);
  text-align: center;
  display: block;
  width: 100%;
  padding: 10px;
  border: 2px solid #cccccc;
  -webkit-border-radius: var(--radius-normal);
  -moz-border-radius: var(--radius-normal);
  border-radius: var(--radius-normal);
}

.ajax_response {
  margin: 25px 0;
}

.message.success {
  --color: var(--color-green);
  color: var(--color);
  border-color: var(--color);
}

.message.info {
  --color: var(--color-blue);
  color: var(--color);
  border-color: var(--color);
}

.message.warning {
  --color: var(--color-yellow);
  color: var(--color);
  border-color: var(--color);
}

.message.error {
  --color: var(--color-red);
  color: var(--color);
  border-color: var(--color);
}

/*320px — 480px: dispositivos móveis
481px — 768px: iPads, tablets
769px — 1024px: telas pequenas, laptops
1025px — 1200px: desktops, telas grandes
1201px e acima —  telas muito grandes, TVs*/

@media(min-width: 320px) and (max-width: 480px) {
  .atv {
    margin-bottom: 700px;
    transition-property: all;
    transition-duration: 1.5s;
  }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
  .atv {
    margin-bottom: 250px;
    transition-property: all;
    transition-duration: 1.5s;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .atv {
    margin-bottom: 250px;
    transition-property: all;
    transition-duration: 1.5s;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1920px) {
  .atv {
    margin-bottom: 650px;
    transition-property: all;
    transition-duration: 1.5s;
  }
}

@media screen and (min-width: 1921px) {
  .atv {
    margin-bottom: 850px;
    transition-property: all;
    transition-duration: 1.5s;
  }
}