@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');

@font-face {
  font-family: "LemonMilkUltralight";
  src: url("../../site/fonts/Lemon_Milk_Pro_Ultra_Light.otf") format("truetype");
}

@font-face {
  font-family: "LemonMilkRegular";
  src: url("../../site/fonts/Lemon_Milk_Pro_Regular.otf") format("truetype");
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  box-sizing: border-box;
}

:root {
  --color-white: #FFFFFF;
  --color-green: #0f7e2e;
  --color-light-green: #a6ce39;
  --color-black: #232423;
}

a.nav-link {
  padding: 0!important;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

em { font-style: normal; }

input[name="email"],
input[name="password"],
#remember-me,
#forgot-password {
  font-family: 'LemonMilkUltralight', 'Lato', sans-serif!important;
}

button[type="submit"] {
  font-family: 'LemonMilkRegular', 'Lato', sans-serif!important;
}

section#wrapper {
  background-image: url('../../site/img/bg-login.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-blend-mode: multiply;
  height: 100%;
  min-width: 100%;
  max-height: 800px;
  
  display: flex;
  min-height: 100%;
}
