.login .main-content {
  width: 50%;
  border-radius: 20px;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
  margin: 5em auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.login .info {
  background-color: #228B22;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
}

.login .form-group {
  width: 100% !important;
}

.login .row h2 {
  color: #228B22;
  margin: 20px auto 0 auto;
  text-align: center;
}

.login .login-form {
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #ccc;
}

.login form {
  padding: 0 2em;
}

.login .form-input {
  text-align: center;
  width: 50%;
  border: 0px solid transparent;
  border-radius: 0;
  border-bottom: 1px solid #aaa;
  outline: none;
  margin: 1.5em auto;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.login .form-input:focus {
  border-bottom-color: #228B22;
  -webkit-box-shadow: 0 0 5px rgba(0, 80, 80, 0.4);
          box-shadow: 0 0 5px rgba(0, 80, 80, 0.4);
  border-radius: 4px;
}

.login .error p {
  margin: auto;
  color: red;
}

@media all and (max-width: 768px) {
  .login .form-input {
    width: 100%;
  }
  .login .main-content {
    width: 70%;
  }
  .login .info {
    display: none;
  }
  .login .login-form {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }
}

@media all and (max-width: 600px) {
  .login .main-content {
    width: 90%;
  }
}

.btn-green {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  border-radius: 30px;
  color: #228B22;
  font-weight: 600;
  width: 50%;
  background-color: #fff;
  border: 1px solid #228B22;
  margin-top: 1.5em;
  margin-bottom: 1em;
}

.btn-green:hover, .btn-green:focus {
  background-color: #228B22;
  color: #fff;
}

@media all and (max-width: 600px) {
  .btn-green {
    width: 100%;
  }
}

.detect-pro {
  margin: 6em auto;
}

.detect-pro button {
  margin: auto;
  width: 80%;
  display: block;
}

.detect-pro .big-det {
  border-radius: 20px;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  padding: 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.detect-pro .big-det img {
  padding: 10px;
  width: 100%;
  max-height: 2000px;
}

.detect-pro .big-det img:hover {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.detect-pro .big-det textarea, .detect-pro .big-det input {
  width: 100%;
}

.detect-pro .big-det .big-name {
  font-size: 2rem;
}

.detect-pro .small-det {
  padding: 10px;
}

.detect-pro .small-det h2 {
  color: #228B22;
  margin: 20px auto 0 auto;
}

.detect-pro .sm-pro-detect {
  padding: 10px;
  border-radius: 10px;
  border: solid 1px black;
  margin: 10px auto;
  height: 300px;
}

@media all and (max-width: 425px) {
  .detect-pro .sm-pro-detect {
    height: 350px;
  }
}

.detect-pro .sm-pro-detect button {
  margin-top: 30px;
}

.detect-pro .sm-pro-detect img {
  width: 100%;
  max-height: 200px;
}

.detect-pro .sm-pro-detect .btn-green {
  width: auto !important;
}

.detect-pro .pagination li {
  margin: auto 10px;
}

.detect-pro .pagination li a {
  color: black;
}

.detect-pro .pagination li:hover {
  cursor: pointer;
}

/* Style the Image Used to Trigger the Modal */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9);
  /* Black w/ opacity */
  /* Modal Content (Image) */
  /* Caption of Modal Image (Image Text) - Same Width as the Image */
  /* Add Animation - Zoom in the Modal */
  /* The Close Button */
  /* 100% Image Width on Smaller Screens */
}

.modal .modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 1000px;
}

.modal #caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

.modal .modal-content, .modal #caption {
  -webkit-animation-name: zoom;
          animation-name: zoom;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoom {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.modal .close {
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 10px 20% 0 70%;
}

.modal .close:hover,
.modal .close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 700px) {
  .modal .modal-content {
    width: 100%;
  }
}

.zoom {
  border-radius: 5px;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.zoom-out {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

header {
  padding: 36.5px 0;
  background: #474A51;
}

header .container {
  max-width: 80% !important;
}

header .navbar {
  padding: 0;
}

header .navbar .logo {
  height: 50px;
}

header .navbar .nav-link {
  color: #D3D3D3 !important;
}

header .navbar .nav-link:hover {
  color: white !important;
}

header .navbar .active > .nav-link {
  color: white !important;
}

header li {
  padding: 0 7px;
}

@media all and (max-width: 1250px) {
  header {
    font-size: 18px;
  }
  header .logo {
    height: 35px !important;
  }
  header .container {
    max-width: 100% !important;
  }
}

@media all and (max-width: 991px) {
  header .container {
    max-width: 80% !important;
  }
}

header button {
  background: none;
  color: white !important;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.pro-profile .info {
  text-align: center;
  margin: 30px auto;
}

body {
  background: white;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 20px;
}

@media all and (max-width: 1109px) {
  body {
    font-size: 18px;
  }
}

.center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.error {
  color: red;
}

.success {
  color: green;
}

.hide {
  display: none;
}

.show {
  display: inline-block;
}

#reg-form .btn-green {
  width: 100% !important;
}

.block-bottom {
  padding-bottom: 30px;
}

.block-top {
  padding-top: 30px;
}
/*# sourceMappingURL=styles.css.map */