*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body
{
    background-color: #eee!important;
    font-family: 'Poppins', sans-serif;
}

/* Upload Image Button */

.upload-box
{
  font-size: 16px;
  background: white;
  border-radius: 50px;
  box-shadow: 3px 3px 10px rgb(158, 158, 158);
  width: 350px;
  outline: none;
  margin-bottom: 20px;
}

::-webkit-file-upload-button
{
  color: white;
  background: #007bff;
  padding: 20px;
  border: none;
  border-radius: 50px;
  outline: none;
}

::-webkit-file-upload-button:hover
{
  background: #3e99fa;
  cursor: pointer;
}

/* End */

.container
{
    margin: auto;
    width: 400px;
    max-width: 90%;
}

.container form
{
    width: 100%;
    height: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 8px 16px rgba(0,0,0, .3);
}

.container form h1
{
    text-align: center;
    margin-bottom: 24px;
    color: #222;
}

.container form .form-control
{
    width: 100%;
    height: 40px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid silver;
    margin: 10px 0 18px 0;
    padding: 0 10px;
}

.btn-primary
{
  background-color: #78afc2!important;
}

#search label
{
  font-size: 20px;
}

.container .btn
{
    margin-left: 35%;
    transform: translateX(-50%);
    width: 120px;
    height: 34px;
    border: none;
    outline: none;
    background-color: #27a327;
    cursor:pointer;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    border-radius: 4px;
}

h2 {
  font-size: 32pt;
  color: rgb(255, 153, 0);
  text-shadow: 0px 2px 3px rgb(255, 238, 204);
  text-align: center;
  padding: 6px 0px 0px 0px;
  margin: 6px 0px 0px 0px;
}

.alert .inner {
  display: block;
  padding: 6px;
  margin: 6px;
  border-radius: 3px;
  border: 1px solid rgb(180,180,180);
  background-color: rgb(212,212,212);
  font-size: 20px;
}

.alert .close {
  float: right;
  margin: 3px 12px 0px 0px;
  cursor: pointer;
}

.alert .inner,.alert .close {
  color: rgb(88,88,88);
}

.alert input {
  display: none;
}

.alert input:checked ~ * {
  animation-name: dismiss,hide;
  animation-duration: 300ms;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-delay: 0s,100ms;
}

.alert.error .inner {
  border: 1px solid rgb(238,211,215);
  background-color: rgb(242,222,222);
}

.alert.error .inner,.alert.error .close {
  color: rgb(185,74,72);
}

.alert.success .inner {
  border: 1px solid rgb(214,233,198);
  background-color: rgb(223,240,216);
}

.alert.success .inner,.alert.success .close {
  color: rgb(70,136,71);
}

.alert.success p
{
  padding-right: 200px;
  padding-left: 200px;
}

@media only screen and (min-width: 300px) and (max-width: 1080px)
{
  .alert.success p
  {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.alert.info .inner {
  border: 1px solid rgb(188,232,241);
  background-color: rgb(217,237,247);
}

.alert.info .inner,.alert.info .close {
  color: rgb(58,135,173);
}

.alert.warning .inner {
  border: 1px solid rgb(251,238,213);
  background-color: rgb(252,248,227);
}

.alert.warning .inner,.alert.warning .close {
  color: rgb(192,152,83);
}

@keyframes dismiss {
  0% {
    opacity: 1;
  }
  90%, 100% {
    opacity: 0;
    font-size: 0.1px;
    transform: scale(0);
  }
}

@keyframes hide {
  100% {
    height: 0px;
    width: 0px;
    overflow: hidden;
    margin: 0px;
    padding: 0px;
    border: 0px;
  }
}
  