@charset "UTF-8";
:root {
  --primaryColor: #4054a6;
  --secondaryColor: #099adf;
  --primaryColorFont:#FFF;
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: 'ABeeZee', sans-serif;
  --font-family-monospace:  'ABeeZee', sans-serif;
}

 html,body {
      margin: 0;
      padding: 0;
      width: 100%;
      height: 100%;
      font-family: 'ABeeZee', sans-serif;
  }

  div.full-page {
      width: inherit;
      height: inherit;
      background: #e7edf3;
      background:url('/images/bg-photo.jpg'); 
      background-repeat:no-repeat; 
      background-position:left !important;
      background-size: cover;
  }

  div.login {
      background-color: #0d77e0;
      width: 500px;
      margin-left: auto;
      height: inherit;
  }
  div.login-header {
      text-align: center;
      padding-top: 75px;
  }
  div.login-header img {
    border-radius: 5px;
  }
  div.login-body {
      width: 80%;
      margin: auto;
      padding-top: 25px;
  }
  div.login-body label {
    color:var(--primaryColorFont);
    font-weight: bold;
  }
  div.login-body input[type=text], div.login-body input[type=password], div.login-body input[type=email] {
      width: 100%;
      padding: 10px 5px;
      margin: 8px 0;
      display: inline-block;
      border: 1px solid #ccc;
      box-sizing: border-box;
      border-radius: 5px;
  }
  div.login-body input:focus {
    outline: none;
    border: 2px solid #007bff;
  }
  div.login-footer {
      padding-top: 10px;
      text-align: center;
      width: 80%;
      margin: auto;
  }
  div.form-control {
      padding-top: 10px;
  }
  div.btn button {
    display: block;
    width: 100%;
    color: #fff;
    cursor: pointer;
    background-color: var(--secondaryColor);
    border-color: #007bff;
    font-weight: 400;
    text-align: center;
    border: 1px solid transparent;
    padding: .175rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  }
  p.pull-right {
    float: right !important;
    width: max-content;
  }
  p.pull-left {
      float: left;
      width: max-content;
  }
  p.pull-left a, p.pull-right a {
    text-decoration:none;
    color:var(--primaryColorFont);
  }
  div.clear {
      clear: both;
  }
  .invalid-feedback {
    color: red;
    font-size: smaller;      
  }
  div.card-header {
    margin-bottom: 50px;
    text-align: center;
    padding: 5px;
    background: black;
    color: #fff;
    border-radius: 5px;
  }
  div.info-text {
    padding: 10px;
    border: #ccc solid 1px;
    border-radius: 5px;
    margin-top: 15px;
    margin-bottom: 25px;
    text-align: justify;
    font-style: italic;
  }
  div.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
  }
  .alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
  }
  .alert-dismissible {
    padding-right: 4rem;
  }
  .alert {
    position: relative;
    padding: .75rem 1.25rem;
    padding-right: 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 20px;
  }
  .fade {
    transition: opacity .15s linear;
  }
  .alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: .75rem 1.25rem;
    color: inherit;
  }
  a.close {
      text-decoration: none !important;
      font-size: 18px !important;
      line-height: 1.2;
  }
  .close {
      float: right;
      font-size: 1.5rem;
      font-weight: 700;
      line-height: 1;
      color: #000;
      text-shadow: 0 1px 0 #fff;
      opacity: .5;
  }

  span.page-number {
    color: rgb(177, 37, 37);
    background-color: #0474ff;
    border-radius: 50%;
    padding: 35px;
    margin-top: 25px !important;
    font-weight: bold;
    font-size: xx-large;
    display: inline-block;
  }
  .alert-warning {
      color: #856404;
      background-color: #fff3cd;
      border-color: #ffeeba;
  }
/*### Smartphones (portrait and landscape)(small)### */
@media screen and (min-width : 0px) and (max-width : 767px){
    div.login {
        max-width: 100%;
        min-width: 350px;
    }
    p.pull-left, p.pull-right {
        width: 100% !important;
        text-align: left !important;
        margin-top: 5px !important;
    }
    div.login-header {
      padding-top: 20px;
    }
    div.card-header {
      margin-bottom: 20px;
    }
    div.login-body {
      padding-top: 10px;
    }
}