@charset "utf-8";

@import url(//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css);

div.main {
  background: #4CAF50;
  background: -moz-radial-gradient(center, ellipse cover, #4CAF50 1%, #2E7D32 100%);
  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(1%, #4CAF50), color-stop(100%, #2E7D32));
  background: -webkit-radial-gradient(center, ellipse cover, #4CAF50 1%, #2E7D32 100%);
  background: -o-radial-gradient(center, ellipse cover, #4CAF50 1%, #2E7D32 100%);
  background: -ms-radial-gradient(center, ellipse cover, #4CAF50 1%, #2E7D32 100%);
  background: radial-gradient(ellipse at center, #4CAF50 1%, #2E7D32 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4CAF50', endColorstr='#2E7D32', GradientType=1);
  height: calc(100vh);
  width: 100%;
}

[class*="fontawesome-"]:before {
  font-family: 'FontAwesome', sans-serif;
}

/* ---------- GENERAL ---------- */

* {
  box-sizing: border-box;
  margin: 0px auto;
}

body {
  color: #606468;
  font: 87.5%/1.5em 'Open Sans', sans-serif;
  margin: 0;
  background-repeat: no-repeat;
  background-image: linear-gradient(rgb(104, 145, 162), rgb(12, 97, 33));
}

a {
  color: #fff;
  /* Alterado para branco */
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
  color: #e0e0e0;
  /* Cor mais clara no hover */
}

input {
  border: none;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5em;
  padding: 0;
  -webkit-appearance: none;
}

p {
  line-height: 1.5em;
}

.clearfix {
  *zoom: 1;
}

.clearfix:before,
.clearfix:after {
  content: ' ';
  display: table;
}

.clearfix:after {
  clear: both;
}

.container {
  left: 50%;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* ---------- LOGIN ---------- */

#login form {
  width: 250px;
}

#login,
.logo {
  display: inline-block;
  /* centralizar logo e login */
  width: 45%;
}

#login {
  border-right: 1px solid #fff;
  padding: 0px 22px;
  width: 59%;
}

.logo {
  color: #fff;
  font-size: 35px;
  line-height: 90px;
  position: relative;
  /* Adicionado para posicionamento do SisRep */
}

.logo::before {
  content: " SisRep";
  display: block;
  font-size: 30px;
  /* Tamanho do SisRep // Nome do Sistema // */
  font-weight: bold;
  text-align: left;
  /* Alinhado à esquerda */
  position: absolute;
  /* Posicionamento absoluto */
  top: -60px;
  /* Ajuste conforme necessário para aproximar da logo */
  left: 22px;
}

#login form span.fa {
  background-color: #f5f5f5;
  border-radius: 3px 0px 0px 3px;
  color: #000;
  display: block;
  float: left;
  height: 50px;
  font-size: 24px;
  line-height: 50px;
  text-align: center;
  width: 50px;
}

#login form input {
  height: 50px;
}

fieldset {
  padding: 0;
  border: 0;
  margin: 0;
}

#login form input[type="text"],
input[type="password"] {
  background-color: #fff;
  border-radius: 0px 3px 3px 0px;
  color: #000;
  margin-bottom: 1em;
  padding: 0 16px;
  width: 200px;
}

#login form input[type="submit"] {
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background-color: #1B5E20;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  padding: 5px 10px;
  height: 30px;
}

#login form input[type="submit"]:hover {
  background-color: #2E7D32;
}

#login>p {
  text-align: center;
}

#login>p span {
  padding-left: 5px;
}

.middle {
  display: flex;
  width: 600px;
}

.logo-mobile {
  display: none;
}

/* Estilos adicionais do template verde */
.btn.btn-signin {
  background-color: #1B5E20;
  padding: 0px;
  font-weight: 700;
  font-size: 14px;
  height: 36px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: none;
  -o-transition: all 0.218s;
  -moz-transition: all 0.218s;
  -webkit-transition: all 0.218s;
  transition: all 0.218s;
}

.btn.btn-signin:hover,
.btn.btn-signin:active,
.btn.btn-signin:focus {
  background-color: #2E7D32;
}

.forgot-password {
  color: #fff;
  font-weight: bold;
}

.forgot-password:hover,
.forgot-password:active,
.forgot-password:focus {
  color: #ffffff;
}

@media(max-width: 768px) {
  #login {
    border-right: 0px solid transparent;
  }

  .texto-logo {
    display: none;
  }

  .logo-mobile {
    display: block;
  }
}

#login a[data-target="#exampleModal"] {
  color: #fff;
  font-weight: bold;
}

#login a[data-target="#exampleModal"]:hover {
  color: #e0e0e0;
}