﻿body {
  min-height: 100vh;
  background: #000000;
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(36, 56, 52) 100%);
}

.login-area {
  padding-top: 80px;
  padding-bottom: 60px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-area .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.login-area .image {
  width: 600px;
  height: auto;
}
.login-area .image img {
  width: 100%;
  height: auto;
}

.login-block {
  max-width: 450px;
  background: #006F4E;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}
.login-block label, .login-block input {
  width: 100%;
}
.login-block input {
  margin-bottom: 10px;
}
.login-block p.title {
  color: #FF8931;
  text-transform: uppercase;
  font-family: "GT America Bl", "Work Sans", sans-serif;
  text-align: center;
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 30px;
}
.login-block .p-normal {
  text-align: center;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
}
.login-block .p-normal span {
  font-weight: bold;
}
.login-block label {
  color: #fff;
}
.login-block .actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.login-block .actions .bt-senha {
  padding: 0;
  background: none;
  text-transform: none;
  color: #FF8931;
  font-family: "GT America Rg", "Work Sans", sans-serif;
  font-size: 16px;
  line-height: 16px;
  margin-top: 0;
  text-decoration: underline;
}
.login-block .actions .bt-senha:hover, .login-block .actions .bt-senha:active {
  color: #243834;
}
.login-block .actions .bt-login {
  margin-top: 0;
  font-size: 16px;
  line-height: 16px;
}
.login-block .p1 {
  font-weight: bold;
  font-size: 20px;
  line-height: 20px;
  margin-top: 40px;
  margin-bottom: 5px;
  color: #fff;
}
.login-block .p2 {
  color: #fff;
}
.login-block .bt-primeiro-acesso {
  margin-top: 20px;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 0px;
}
.login-block .text-danger {
  color: yellow !important;
}

@media screen and (max-width: 1200px) {
  .image {
    width: 50%;
  }
  .login-block {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .login-area .container {
    flex-direction: column;
    gap: 20px;
  }
  .login-area .image {
    width: 100%;
    text-align: center;
  }
  .login-area .image img {
    width: 400px;
  }
  .login-block {
    width: 100%;
    max-width: 450px;
  }
}
@media screen and (max-width: 768px) {
  .login-area {
    padding-top: 40px;
  }
  .login-area .image img {
    width: 350px;
  }
  .login-block p.title {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 575px) {
  #loginForm {
    width: calc(100% - 40px);
  }
  .login-block {
    padding: 20px;
  }
}
