/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Montserrat-Regular;
  src: url("../fonts/montserrat/Montserrat-Regular.ttf");
}

@font-face {
  font-family: Montserrat-ExtraBold;
  src: url("../fonts/montserrat/Montserrat-ExtraBold.ttf");
}

@font-face {
  font-family: Montserrat-Bold;
  src: url("../fonts/montserrat/Montserrat-Bold.ttf");
}

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: Montserrat-Regular, sans-serif;
  background: #1d1d1d; /* Fundo escuro para destacar o brilho metálico */
  color: #f1f1f1; /* Texto em um tom claro para contraste */
}

/*---------------------------------------------*/
a {
  font-family: Montserrat-Regular;
  font-size: 14px;
  line-height: 1.7;
  color: #a6a6a6; /* Cor metálica para links */
  margin: 0px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
  outline: none !important;
}

a:hover {
  text-decoration: none;
  color: #ffffff; /* Brilho metálico ao passar o mouse */
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.8);
}

/*---------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #e6e6e6;
}

p {
  font-family: Montserrat-Regular;
  font-size: 14px;
  line-height: 1.7;
  color: #999999; /* Texto suave */
  margin: 0px;
}

ul,
li {
  margin: 0px;
  list-style-type: none;
}

/*---------------------------------------------*/
input,
textarea {
  outline: none;
  border: 1px solid #888888; /* Borda metálica suave */
  background: #2a2a2a; /* Cor de fundo metálica */
  color: #cccccc; /* Texto suave */
  padding: 10px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus,
textarea:focus {
  border-color: #4e6e94; /* Cor metálica brilhante */
  box-shadow: 0 0 10px rgba(78, 110, 148, 0.7); /* Brilho no foco */
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999999;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #999999;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #999999;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999999;
}

/*---------------------------------------------*/
button {
  outline: none !important;
  border: 1px solid #666666;
  background: linear-gradient(45deg, #333333, #444444); /* Gradiente metálico */
  color: #ffffff;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
}

button:hover {
  background: linear-gradient(45deg, #444444, #555555); /* Efeito de destaque no hover */
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

button:active {
  background: linear-gradient(45deg, #555555, #666666); /* Efeito de pressão */
}

/*---------------------------------------------*/
iframe {
  border: none !important;
}

/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
  font-family: Montserrat-Regular;
  font-size: 16px;
  color: #cccccc;
  line-height: 1.4;
}

.bo1 {
  border-bottom: 1px solid #888888;
}

.hov1:hover {
  border-color: #d33f8d;
}

/*///////////////////////////////////////////////////////////////
3D Effect and Metal Style*/
.card {
  background: #333333;
  border: 2px solid #444444;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  transform: rotateY(0deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: rotateY(15deg);
  box-shadow: 0 0 25px rgba(78, 110, 148, 0.8);
}

@keyframes metallicGlow {
  0% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 30px rgba(78, 110, 148, 0.8);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  }
}

.metallic-glow {
  animation: metallicGlow 1.5s infinite alternate;
}

/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  background: #1a1a1a;
}

/* Alterando o fundo para um gradiente metálico escuro */
.container-login100::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #1a1a1a, #333333);
  opacity: 0.9;
}

.wrap-login100 {
  width: 390px;
  background: transparent;
}

.login100-form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.login100-form-title {
  font-family: Montserrat-ExtraBold;
  font-size: 24px;
  color: #ffffff;
  line-height: 1.2;
  text-align: center;
  width: 100%;
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Avatar metálico */
.login100-form-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 5px solid #444444;
  box-shadow: 0 0 15px rgba(78, 110, 148, 0.6);
}
.login100-form-avatar img {
  width: 100%;
}

/* Input com bordas metálicas e efeito de foco */
.wrap-input100 {
  position: relative;
  width: 100%;
  z-index: 1;
}

.input100 {
  font-family: Montserrat-Bold;
  font-size: 15px;
  line-height: 1.2;
  color: #e6e6e6; /* Cor do texto metálico */
  display: block;
  width: 100%;
  background: #333333;
  height: 50px;
  border-radius: 25px;
  padding: 0 30px 0 53px;
  border: 1px solid #555555;
  transition: all 0.3s;
}

.input100:focus {
  background: #2a2a2a;
  border-color: #4e6e94; /* Cor metálica no foco */
  box-shadow: 0 0 15px rgba(78, 110, 148, 0.8); /* Brilho no foco */
}

/* Efeito de sombra no foco */
.focus-input100 {
  display: block;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 0px 0px;
  color: rgba(0, 91, 234, 0.6);
}

.input100:focus + .focus-input100 {
  -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
  animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 80px 30px;
    opacity: 0;
  }
}

@keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 80px 30px;
    opacity: 0;
  }
}

.symbol-input100 {
  font-size: 15px;
  color: #999999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 30px;
  pointer-events: none;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input100:focus + .focus-input100 + .symbol-input100 {
  color: #00c6fb;
  padding-left: 23px;
}

/* Animação metálica de brilho para o formulário de login */
@keyframes metallicGlow {
  0% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 30px rgba(78, 110, 148, 0.8);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  }
}

.metallic-glow {
  animation: metallicGlow 1.5s infinite alternate;
}

/* Botão metálico com efeito de press */
button {
  font-family: Montserrat-Bold;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(45deg, #444444, #555555);
  border: 1px solid #666666;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 15px rgba(78, 110, 148, 0.6);
}

button:hover {
  background: linear-gradient(45deg, #555555, #666666);
  box-shadow: 0 0 25px rgba(78, 110, 148, 0.8);
}

button:active {
  background: linear-gradient(45deg, #666666, #777777);
}


/*------------------------------------------------------------------
[ Button ]*/

.container-login100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.login100-form-btn {
  font-family: Montserrat-Bold;
  font-size: 15px;
  line-height: 1.5;
  color: #e0e0e0;

  width: 100%;
  height: 50px;
  border-radius: 25px;
  background: #1c3a4f;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #555555;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  position: relative;
  z-index: 1;
}

/* Gradiente metálico no botão com efeito 3D */
.login100-form-btn::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  top: 0;
  left: 0;
  background: linear-gradient(45deg, #005bea, #00c6fb);
  background: -webkit-linear-gradient(45deg, #005bea, #00c6fb);
  background: -o-linear-gradient(45deg, #005bea, #00c6fb);
  background: -moz-linear-gradient(45deg, #005bea, #00c6fb);
  background: linear-gradient(45deg, #005bea, #00c6fb);
  opacity: 0;
  transition: all 0.4s;
}

/* Efeito 3D no hover do botão */
.login100-form-btn:hover {
  background: transparent;
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 150, 255, 0.6);
}

.login100-form-btn:hover::before {
  opacity: 1;
}

/*------------------------------------------------------------------
[ Button sign in with ]*/

.btn-face,
.btn-google {
  font-family: Raleway-Bold;
  font-size: 16px;
  line-height: 1.2;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - 10px) / 2);
  height: 40px;
  border-radius: 3px;
  border: 1px solid #e6e6e6;
  background-color: #fff;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Estilo específico para o botão Facebook */
.btn-face {
  color: #3b5998;
}

.btn-face i {
  font-size: 20px;
  margin-right: 10px;
  padding-bottom: 1px;
}

/* Estilo específico para o botão Google */
.btn-google {
  color: #555555;
}

.btn-google img {
  width: 19px;
  margin-right: 10px;
  padding-bottom: 1px;
}

/* Efeito de hover e brilho metálico para os botões sociais */
.btn-face:hover,
.btn-google:hover {
  border-color: #d33f8d;
  box-shadow: 0 0 20px rgba(0, 150, 255, 0.6);
  color: #fff;
}

/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 100%;
  background-color: white;
  border: 1px solid #c80000;
  border-radius: 14px;
  padding: 4px 25px 4px 10px;
  top: 100%;
  transform: translateY(-50%);
  right: 8px;
  pointer-events: none;

  font-family: Montserrat-Bold;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f06a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 15px;
  top: 100%;
  transform: translateY(-50%);
  right: 13px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

/*//////////////////////////////////////////////////////////////////
[ responsive ]*/

@media (max-width: 576px) {
  .wrap-login100 {
    padding-top: 80px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

p.powered {
  position: absolute;
  left: 10px;
  bottom: 10px;
}