/*
 * define color theme for login page
 */
.hide {
  display: none;
}
html,
body {
  width: 100%;
  height: 100%;
}
body {
  background: #005686;
  background: -webkit-linear-gradient(right, #0076b9, #005686);
  background: -moz-linear-gradient(right, #0076b9, #005686);
  background: -o-linear-gradient(right, #0076b9, #005686);
  background: linear-gradient(to left, #0076b9, #005686);
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Background image is centered vertically and horizontally at all times */
  background-position: center center;
  /* Background image doesn't tile */
  background-repeat: no-repeat;
  /* Background image is fixed in the viewport so that it doesn't move when
       the content's height is greater than the image's height */
  background-attachment: fixed;
  /* This is what makes the background image rescale based
       on the container's size */
  background-size: cover;
}
body.juvent {
  /* Location of the image */
  background-image: url("/img/juvent/background.jpg");
  /* Set a background color that will be displayed
             while the background image is loading */
  background-color: #464646;
}
body.toules {
  /* Location of the image */
  background-image: url("/img/toules/background.jpg");
  /* Set a background color that will be displayed
             while the background image is loading */
  background-color: #464646;
}
body.cambkw {
  /* Location of the image */
  background-image: url("/img/cambkw/background.jpg");
  /* Set a background color that will be displayed
             while the background image is loading */
  background-color: #464646;
}
body.ellern {
  /* Location of the image */
  background-image: url("/img/ellern/background.jpg");
  /* Set a background color that will be displayed
             while the background image is loading */
  background-color: #464646;
}
body.thermalrating {
  /* Location of the image */
  background-image: url("/img/thermalrating/background.jpg");
  /* Set a background color that will be displayed
            while the background image is loading */
  background-color: #464646;
}
body.thermalrating:before {
  content: " ";
  z-index: -1;
  top: 0;
  left: 0;
  background: #005686;
  background: -webkit-linear-gradient(right, rgba(0, 118, 185, 0.9), #005686);
  background: -moz-linear-gradient(right, rgba(0, 118, 185, 0.9), #005686);
  background: -o-linear-gradient(right, rgba(0, 118, 185, 0.9), #005686);
  background: linear-gradient(to left, rgba(0, 118, 185, 0.9), #005686);
}
a {
  color: #005686;
}
a:hover {
  color: #0076b9;
}
header {
  width: 300px;
  padding: 4% 0 0;
  text-align: center;
  margin: auto;
}
.login-page {
  width: 300px;
  padding: 4% 0 0;
  margin: auto;
}
.login-page .form {
  position: relative;
  z-index: 1;
  background: #ffffff;
  max-width: 300px;
  margin: 0 auto 100px;
  padding: 15px 45px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.login-page .form h2 {
  color: #b3b3b3;
  font-size: 1em;
}
.login-page .form input {
  font-family: "Roboto", sans-serif;
  outline: 0;
  background: #e6e6e6;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}
.login-page .form input.required {
  border: 1px solid red;
}
.login-page .form button {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  outline: 0;
  background: #003553;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #ffffff;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
}
.login-page .form button:hover,
.login-page .form button:active,
.login-page .form button:focus {
  background: #005686;
}
.login-page .form .message {
  margin: 15px 0 0;
  color: red;
  font-size: 12px;
}
.login-page .form .message a {
  color: #4caf50;
  text-decoration: none;
}
.login-page .form p.logo_meteotest {
  margin-top: 40px;
  text-align: right;
  font-size: 0.7em;
}
.login-page .form p.logo_meteotest img {
  float: left;
  margin-right: 10px;
  width: 55px;
}
