.botao {
    padding: 11px 15px;
    font-weight: 500;
    font-size: 16px;
    color: #00264a;
    border: 1px solid #00264a;
    border-radius: 5px;
    background-color: transparent;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }
  
  .botao:hover {
    color: #fff;
    background-color: #00264a;
  }
  
  .container-fluid {
    padding: 0;
  }
  
  .col1 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
  }
  
  @media (min-width: 768px) {
    .col1 {
      float: left;
      width: 66.66667%;
    }
  }
  
  .col1 .content-login {
    max-width: 520px;
    margin: 0 auto;
  }
  
  .col1 .content-login img {
    margin: 0 auto;
    display: block;
  }
  
  .col1 .content-login hr {
    margin-bottom: 30px;
  }
  
  .col1 .content-login h1 {
    color: #00264a;
    font-size: 28px;
  }
  
  .col1 .content-login h2 {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
  }
  
  .col1 .content-login .form-group a {
    color: #666;
    font-size: 13px;
  }
  
  .col1 .content-login .form-group .form-control {
    border: 0;
    height: 42px;
    box-shadow: none;
    border-bottom: 2px solid #e3e3e3;
    border-radius: 0;
  }
  
  .col1 .content-login .form-group .form-control:hover {
    box-shadow: none;
    border-bottom: 2px solid #d2af1c;
  }
  
  .col1 .content-login .form-group .form-control:focus {
    box-shadow: none;
    border-bottom: 2px solid #d2af1c;
  }
  
  .col1 .content-login .col-botao {
    margin-top: 25px;
  }
  
  .col1 .content-login .col-botao .botao {
    background-color: #d2af1c;
    border: 0;
    color: #fff;
  }  
  
  .col2 {
    height: 100vh;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    background-image: url("../images/bg-login.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  @media (min-width: 768px) {
    .col2 {
      float: left;
      width: 33.33333%;
    }
  }
  
  .col2 .overlay {
    background-color: #00264a;
    filter: alpha(opacity=60);
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 101;
  }
  
  @media (max-width: 767px) {
    .col2 {
      display: none;
    }
  }

  .modal-title {
    color: #00264a;
  }
  
  .modal-body input, .modal-body textarea {
    box-shadow: none !important;
    border-radius: 0;
  }
  
  .modal-body input:focus, .modal-body textarea:focus {
    border: 1px solid #00264a;
  }
  
  .modal-body input {
    height: 42px;
  }
  
  .modal-footer .botao {
    background-color: #d2af1c;
    border: 0;
    color: #fff;
  }
  