﻿html, body {
  height: 100%;
}

body {
  -ms-background-size: cover;
  background-size: cover;
  background-image: url('Images/background.jpg');
}

.darken {
  height: 100%;
}

#centerBox {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 450px;
  transform: translate(-50%, -50%);
  background-color: white;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
}

#loginHeader, #header {
  background-color: white;
  padding: 20px;
  padding-bottom: 0;
}

  #loginHeader img {
    width: 150px;
    height: 43px;
  }

  #loginHeader::after {
    background: linear-gradient(90deg, #007fc8 0, #878787 50%, #f6a800);
    content: "";
    display: block;
    height: 5px;
    margin: 20px auto 0;
  }

#loginBody {
  padding: 20px;
  padding-bottom: 0;
}

.input-group-addon {
  background-color: transparent;
  border: 0;
  position: absolute;
  left: 0;
  z-index: 100;
}

.input-group {
  margin-bottom: 10px;
  width: 100%;
}

  .input-group svg {
    height: 16px;
    width: 16px;
    fill: #AAA;
    position: relative;
    top: 6px;
    transition: fill .15s linear;
  }

  .input-group input {
    box-shadow: none;
    padding-left: 40px;
  }

    .input-group input:focus {
      border-color: #0077c8;
      box-shadow: none;
    }

  .input-group.focus svg {
    fill: #0077c8;
  }

  .input-group.focus .input-group-addon {
    border-color: #0077c8;
  }

.input-group-addon:first-child {
  padding-right: 0;
}

table {
  width: 100%;
}

.btn {
  margin: 10px 0;
  width: 100%;
}

#forgotRegister,
#links {
  text-align: left;
  padding: 20px;
  padding-top: 5px;
  background-color: white;
  font-size: 14px;
  line-height: 26px;
}

  #forgotRegister a,
  #links a {
    font-size: 14px;
  }

.error-message {
  color: #E4002B;
  margin-bottom: 10px;
  display: none;
}

.error .error-message {
  display: block;
}

#language-header {
  text-align: right;
}

#language-toggle {
  font-size: 14px;
  margin: 0;
}

#header-language svg {
  fill: white;
}

@media(max-width: 767px) {
  #centerBox {
    width: 100%;
  }
}

#header-language {
  position: absolute;
  right: 4px;
  top: 6px;
}

#logoutBox h2 {
  margin-top: 10px;
}

#logoutBox a {
  display: block;
  margin-bottom: 20px;
}

a svg {
  fill: #f6a800;
  height: 16px;
  width: 16px;
  position: relative;
  top: 3px;
  left: 3px;
  transition: fill 0.15s linear;
}

a:hover svg {
  fill: #aa7400;
}
