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

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: "Lato", "Segoe UI", "Roboto", Arial, sans-serif;
  font-variant: normal;
  font-weight: 400;
  font-size: 15px;
  background-color: #ffffff;
  color: #353535;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  outline: none; }

a,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  padding: 0;
  background: none;
  color: #2196f3;
  outline: none;
  font-size: inherit;
  text-decoration: none;
  cursor: pointer; }
  a:hover,
  button:hover {
    color: #51adf6;
    outline: none;
    text-decoration: none; }
  a:focus,
  button:focus {
    color: #2196f3;
    outline: none;
    text-decoration: none; }

input[type="text"],
input[type="password"],
input[type="submit"],
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  outline: none;
  border: none;
  border-radius: 0;
  padding: 10px 20px;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit; }
  input[type="text"]:focus,
  input[type="password"]:focus,
  input[type="submit"]:focus,
  select:focus {
    outline: none; }

input:-webkit-autofill {
  background-color: #ffffff !important;
  color: #353535 !important;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  -webkit-text-fill-color: #353535 !important; }

.title {
  font-size: 32px;
  font-weight: 700; }

.space {
  flex-grow: 1;
  flex-shrink: 1; }

#login {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: stretch;
  background-color: #ffffff;
  background-image: url(../img/login_02.jpg);
  background-size: cover;
  background-position: 50%;
  /*&::before {
		content: "";
		position: absolute;
		top: -20px;
		left: -20px;
		bottom: -20px;
		right: -20px;
		z-index: -1;
		background-image: url(../img/login.jpg);
		background-size: cover;
		background-position: 50%;
		animation-name: blurry;
		animation-duration: 1s;
		animation-delay: 2s;
		animation-fill-mode: forwards;
	}*/ }
  #login #login-container {
    min-width: 340px;
    width: 33%;
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    padding: 30px 40px;
    background-color: #2196f3;
    color: #ffffff; }
    #login #login-container .title {
      margin-bottom: 30px;
      text-align: center; }
    #login #login-container .login-inputs {
      margin-bottom: 50px; }
      #login #login-container .login-inputs form {
        width: 260px;
        margin: auto; }
        #login #login-container .login-inputs form input[type="text"],
        #login #login-container .login-inputs form input[type="password"] {
          margin-bottom: 5px;
          background-color: #ffffff;
          color: #353535; }
        #login #login-container .login-inputs form input[type="submit"] {
          margin-top: 10px;
          font-weight: 700;
          background-color: #00c7b5;
          color: #ffffff;
          cursor: pointer; }
          #login #login-container .login-inputs form input[type="submit"]:hover {
            background-color: #00e1cc; }
          #login #login-container .login-inputs form input[type="submit"]:focus {
            background-color: #00c7b5; }

/*@keyframes blurry {
    from { filter: blur(0px); }
    to { filter: blur(10px); }
}*/

/*# sourceMappingURL=login.css.map */