﻿@import '/css/font.css';
* {
  font-family: "Source Sans Pro";
}

html, body {
  height: 100%;
  width: 100%;
  background-color: var(--card-backdrop);
  background-size: cover;
  background-size: 100% 100%;
}

.Login {
  height: 100%;
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-align-content: center;
  -webkit-align-content: center;
  align-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.Login-Box {
  width: 350px;
  background-color: white;
  border: 1px solid lightgray;
  -webkit-box-shadow: 4px 4px 26px 11px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 4px 4px 26px 11px rgba(34, 60, 80, 0.2);
  box-shadow: 4px 4px 26px 11px rgba(34, 60, 80, 0.2);
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .Login-Box {
    width: calc(100vw - 15px);
  }
}
.Login-Box-Wrapper {
  position: relative;
  display: flex;
}
.Login-Box-Frame {
  padding: 15px;
  min-width: 350px;
  width: 350px;
  max-width: 350px;
}
@media only screen and (max-width: 768px) {
  .Login-Box-Frame {
    min-width: calc(100vw - 15px);
    width: calc(100vw - 15px);
    max-width: calc(100vw - 15px);
  }
}
.Login-Box-Frame-Title {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-bottom: 5px;
  -webkit-align-items: center;
  align-items: center;
  padding-bottom: 15px;
}
.Login-Box-Frame-Title i {
  font-size: 25px;
  color: darkgray;
}
.Login-Box-Frame-Title i:hover {
  color: black;
  cursor: pointer;
}
.Login-Box-Frame-Title h4 {
  display: inline-block;
  font-weight: bold;
  flex: 1;
  text-align: center;
  margin: 0;
  padding: 0;
}
.Login-Box-Frame-Errors {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  color: red;
  margin-top: 5px;
  margin-bottom: 10px;
}
.Login-Box-Frame-Errors ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.Login-Box-Frame-Input {
  margin-bottom: 15px;
}
.Login-Box-Frame-Links {
  padding: 0px 5px;
  display: flex;
  -ms-align-content: center;
  -webkit-align-content: center;
  align-content: center;
}
.Login-Box-Frame-Links label {
  flex: 1;
}
.Login-Box-Frame-Links *:focus {
  outline: 1px dashed darkgray;
}
.Login-Box-Frame .btn {
  margin-top: 15px;
  width: 100%;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border: none;
  outline: none;
  -webkit-border-bottom-left-radius: 5px;
  border-bottom-left-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
  height: 40px;
  background-color: var(--main-font-color);
  opacity: 1;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.Login-Box-Frame .btn:disabled {
  background-color: var(--main-font-color);
  opacity: 0.5;
  border: none;
  outline: none;
}
.Login-Box-Frame .s-Input-Group input {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-color: var(--card-backdrop);
}
.Login-Box-Frame .s-Input-Group::before, .Login-Box-Frame .s-Input-Group label {
  background-color: transparent;
}
.Login-Box-Frame .button {
  -webkit-border-bottom-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
