/* FONTS */

@font-face {
    font-family: 'Myriad Pro Light';
    font-style: normal;
    font-weight: normal;
    src: local('Myriad Pro Light'), url('../fonts/myriad-pro/MyriadPro-Light.woff') format('woff');
}

/* MAIN STYLE*/

* {
    box-sizing: border-box;
}

html {
	width: 100%;
	height: 100%; 
	margin: 0px; 
	padding: 0px;
}

body {
  font-family: 'Myriad Pro Light', sans-serif;
  font-style: normal;
  font-weight: 300;
	font-size: 1em;
	color: #808080;
  text-shadow: 0px 0px 1px rgba(128, 128, 128, 0.8);
	margin: 0;
}

h1 {
  font-size: 2em;
  font-weight: 300;
  line-height: 20px;
  margin: 0;
  color: #04164a;
  padding: 20px 0;
  text-align: center;
  letter-spacing: -1px;
  text-shadow: 0px 0px 1px rgba(4, 22, 74, 0.8);
}

p {
  margin: 0;
  padding: 10px;
  -webkit-font-smoothing: auto;
}

/* LOGIN STYLE*/

main#login-main .logo {
  text-align: center;
}

main#login-main .logo>img {
  width: 30vh;
  height: 30vh;
}


main#login-main .login-form {
  background-color: #eaebee;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 40vh;
  margin: auto;
  margin-top: 50px;
}

main#login-main .login-form h2 {
  color: #04164a;
  font-size: 1.5em;
  text-align: center;
  font-weight: 300;
  margin: 0px;
  padding-bottom: 10px;
}

main#login-main .login-form input{
  background-color: #ffffff;
  padding: 15px;
  border-radius: 8px 8px 8px 0px;
  border-color: #ffffff;
  border: none;
  width: 100%;
  margin-bottom: 10px;
}

main#login-main .login-form input[type=checkbox]{
  height: 15px;
  width: 15px;
  vertical-align: middle;
  margin: 0px 0px 0px 5px;
}

main#login-main .login-form input::placeholder {
  font-family: 'Myriad Pro Light', sans-serif;
  color: #808080;
}

main#login-main .login-form button{
  background-color: #005e90;
  padding: 10px;
  padding-inline: 1rem;
  border-radius: 8px;
  border: none;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  float: right;
  cursor: pointer;
}

main#login-main .login-form label{
  font-size: 0.8em;
  line-height: 5vh;
}

select::-ms-expand { display: none; }

main#login-main .login-form select{
  background-color: #ffffff;
  padding: 10px 20px 10px 10px;
  border-radius: 8px;
  border: none;
  color: #808080;
  text-transform: uppercase;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('../images/icons/arrow_drop_down.svg');
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: center;
}

.login-form-checkbox {
  width: 100%;
  display: inline-flex;
  padding-bottom: 10px;
}


.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #005e90;
}

input:focus + .slider {
  box-shadow: 0 0 1px #005e90;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}