:root {
  --color1: #000000;
  --color2: #ff9000;
  --color3: #717171; }

body {
  overflow-x: hidden !important;
  font-family: 'Montserrat', sans-serif;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0px; }
  body.swal2-height-auto {
    height: 100vh !important; }

section#page {
  height: 100vh;
  padding: 0px;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  overflow: hidden; }
  section#page .container-fluid, section#page .row {
    height: 100%; }
  section#page .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; }

.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */ }

.logo-content {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin-top: -10px; }
  .logo-content img {
    max-width: 190px;
    margin: auto; }

.input-relative {
  position: relative; }
  .input-relative .show-pass {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    color: var(--color2);
    padding: 0px !important;
    border: 0px !important;
    outline: none !important;
    background: transparent !important;
    font-size: 18px;
    cursor: pointer; }

.box-login {
  border-radius: 30px;
  width: auto;
  padding: 30px;
  background: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--color1); }
  .box-login .title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--color1);
    letter-spacing: 1px;
    margin-bottom: 20px; }
  .box-login .form-group {
    width: 100%;
    margin-bottom: 14px; }
  .box-login .form-group label {
    margin-bottom: 4px;
    font-size: 0.9rem;
    display: block;
    color: var(--color2);
    font-weight: bold;
    text-align: left !important; }
  .box-login .form-control {
    height: 46px !important;
    font-size: 0.9rem;
    border-color: var(--color1);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    box-shadow: none !important; }
    .box-login .form-control:focus {
      border-color: var(--color2); }
  .box-login .action {
    width: 100%;
    margin-top: 15px; }
  .box-login a:hover {
    color: var(--color1) !important; }
  .box-login .btn {
    cursor: pointer;
    height: 46px;
    font-weight: 500;
    background: var(--color2);
    color: var(--color1);
    width: 100%;
    font-size: 1rem;
    letter-spacing: 0.4px;
    text-align: center;
    padding: 10px;
    border: 1px solid var(--color1) !important;
    border-radius: 8px;
    outline: none !important;
    display: block;
    width: 100%;
    transition: all 0.2s ease-in-out; }
    .box-login .btn:hover {
      border-color: var(--color2) !important;
      background: var(--color1) !important;
      color: var(--color2) !important; }

p {
  font-size: 0.85rem;
  line-height: 1.1rem;
  font-weight: 500;
  color: var(--color3);
  text-align: center;
  margin-top: 14px; }
  p a {
    font-weight: bold;
    color: var(--color1); }

.modal .modal-header {
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 1px solid var(--color1) !important; }
  .modal .modal-header .btn-close {
    background: transparent;
    border: 0px;
    cursor: pointer;
    width: 26px;
    height: 26px; }
    .modal .modal-header .btn-close svg {
      width: 26px;
      height: 26px; }
      .modal .modal-header .btn-close svg path {
        fill: #dc3545; }

.modal .modal-body .form-group {
  width: 100%;
  margin-bottom: 14px; }

.modal .modal-body .form-control {
  height: 46px !important;
  font-size: 0.9rem;
  border-color: var(--color1);
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
  box-shadow: none !important; }
  .modal .modal-body .form-control:focus {
    border-color: var(--color2); }

.modal .modal-body .action {
  margin-top: 14px;
  width: 100%; }

.modal .modal-body button {
  cursor: pointer;
  height: 46px;
  font-weight: 500;
  background: var(--color2);
  color: var(--color1);
  width: 100%;
  font-size: 1rem;
  letter-spacing: 0.4px;
  text-align: center;
  padding: 10px;
  border: 1px solid var(--color1) !important;
  border-radius: 8px;
  outline: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: all 0.2s ease-in-out; }
  .modal .modal-body button svg {
    width: 34px;
    height: 34px;
    margin-right: 7px;
    transition: all 0.2s ease-in-out; }
  .modal .modal-body button:hover {
    border-color: var(--color2) !important;
    background: var(--color1) !important;
    color: var(--color2) !important; }
    .modal .modal-body button:hover svg path {
      fill: var(--color2) !important; }
