@import url(../plugins/animate/animate.min.css);

/* RESET */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;700&display=swap");

html,
body {
  height: 100%;
  position: relative;
}

body {
  background-color: #5F65AD;
  /* background: url(/images/login-bg-empty.jpg); */
  /* background-repeat: no-repeat;
  background-size: cover;
  background-position: top left; */
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  font-family: "Ubuntu", sans-serif;
}

.login-bg-asset-1 {
  position: absolute;
  bottom: 2%;
  left: 2%;
  animation-delay: 0.2s;
}

.login-bg-asset-2 {
  position: absolute;
  top: 30%;
  left: 26%;
  animation-delay: 0.3s;
}

.login-bg-asset-3 {
  position: absolute;
  top: 10%;
  left: 15%;
  animation-delay: 0.5s;
}

.login-modal {
  padding: 2em;
  width: 100%;
}

.logo-container {
  max-width: 200px;
  margin-bottom: 2em;
}

.logo-container img {
  width: auto;
  max-width: 100%;
}

.login-page {
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 1);
  padding: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 3px solid rgba(225, 245, 244, 0.65);
    border-radius: 20px;
    box-shadow: inset 10px 10px 10px -10px rgba(140, 207, 194, 0.35),
    inset -10px -10px 10px -10px rgba(140, 207, 194, 0.35),
    10px 10px 25px -10px rgba(140, 207, 194, 0.55),
    -10px -10px 25px -10px rgba(140, 207, 194, 0.55);*/
}

.login-modal h1 {
  font-size: 30px;
  /* text-transform: uppercase; */
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3em;
}

.login-form {
  margin: 20px 0;
}
.material-form-field {
  font-size: 14px;
  position: relative;
  display: block;
  color: #000000;
  margin-bottom: 10px;
}
.material-form-field::after {
  content: " ";
  display: block;
  color: #d50000;
  padding-top: 5px;
}
.material-form-field .material-form-field-label {
  position: absolute;
  display: block;
  top: 27px;
  left: 15px;
  font-size: 16px;
  color: #121212;

  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  pointer-events: none;
  cursor: text;
}
.material-form-field input {
  padding: 20px 20px 0px 20px;
  display: block;
  height: 65px;
  width: 100%;
  font-size: 16px;
  color: #000000;
  border-radius: 6px;
  border: 1px solid #ddd;
  outline: none;
}
.material-form-field input:valid ~ .material-form-field-label,
.material-form-field input:focus ~ .material-form-field-label {
  top: 12px;
  left: 15px;
  font-size: 13px;
  font-weight: 300;
  color: rgb(74, 110, 102);
}
.material-form-field input:focus {
  outline: none;
  color: #000;
  border: 2px solid rgb(74, 110, 102);
}
.material-form-field input:focus ~ .material-form-field-label {
  color: rgb(74, 110, 102);
}

.btn-enter {
  padding: 0.95em 1.4em;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  border: none;
  background-color: #5F65AD;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.75);
  pointer-events: all;
  margin-top: 10px;
}

.btn-enter:hover {
  background-color: #f1b2e3;
  color: white;
  cursor: pointer;
}

.error-input {
  background: rgb(233, 188, 188);
  padding: 0.77em 1.3em;
  font-size: 14px;
  line-height: 1.38em;
  color: #a73030;
  border-radius: 5px;
}

.forget-password {
  text-align: left;
  font-size: 14px;
  color: #343434;
}

.forget-password a {
  font-weight: bold;
  color: #343434;
  text-decoration: none;
}

.forget-password a:hover {
  color: #40b8a6;
}

.forget-password-page .login-page {
    background:#ddd;
}

@media screen and (max-width: 962px) {
  .login-page {
    width: 70%;
  }
}

@media screen and (max-width: 767px) {
  body {
    align-items: flex-start;
    justify-content: center;
    background-image: #5F65AD;
    background-size: contain;
  }
  .login-bg-asset-1,
  .login-bg-asset-2,
  .login-bg-asset-3 {
    display: none;
  }
  .logo-container {
    max-width: 130px;
  }
  .login-page {
    width: 90%;
    height: auto;
    background: rgba(255, 255, 255, 1);
    margin-top: 15em;
    margin-bottom: 5em;
    border-radius: 20px;
    box-shadow: 0px 10px 20px -10px rgba(140, 207, 194, 0.75);
    padding: 1em;
  }
}
