* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: Montserrat;
  src: url(../Font/Montserrat-VariableFont_wght.ttf);
}

body {
  height: 100vh;

  background: radial-gradient(
    circle at 50% 50%,
    rgb(43, 232, 356) 0%,
    rgb(80, 187, 325) 50.9%,
    rgb(55, 133, 226) 76.7%,
    rgb(44, 115, 191) 100.2%
  );

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.login-background {
  height: 600px;
  width: 500px;
  background-color: #fff;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  border-radius: 25px;

  box-shadow:
    0 25.6px 57.6px 0 rgb(0 0 0 / 22%),
    0 4.8px 14.4px 0 rgb(0 0 0 / 18%);
}

.login-left {
  height: 100%;
  width: 100%;
  padding: 50px;
  border-radius: 25px 0 0 25px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.login-right {
  height: 100%;
  width: 50%;
  border-radius: 0 25px 25px 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background-color: #e8f3ff;
}
.label {
  height: 100px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.login-label-contact {
  padding: 50px;
  height: 50px;
  width: 100%;
}
/*--------------------------------------------------------TEXTBOX-----------------------------------------------------*/

.inputBox {
  position: relative;
  width: 100%;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.inputBox input {
  width: 100%;
  padding: 10px;
  font-family: Montserrat;
  border: 2px solid #d4d4d4;
  border-radius: 25px;
  outline: none;
  color: black;
  font-size: 1em;
  transition: 0.3s;
  padding-left: 40px;
}
.inputBox span {
  position: absolute;
  left: 0;
  margin-left: 40px;
  padding: 10px;
  pointer-events: none;
  font-family: Montserrat;
  font-size: 1em;
  color: rgba(128, 128, 128, 0.644);
  text-transform: uppercase;
  transition: 0.3s ease;
}
.inputBox input:valid ~ span,
.inputBox input:focus ~ span {
  color: #1787ff;
  transform: translateX(10px) translateY(-20px);
  font-size: 0.8em;
  padding: 0 10px;
  background: #fff;
  border-left: 2px solid #1787ff;
  border-right: 2px solid #1787ff;
  letter-spacing: 0.2em;
}

.inputBox input:valid,
.inputBox input:focus {
    background: #fff;
  border: 2px solid #1787ff;
}
/*--------------------------------------------------------TEXTBOX-----------------------------------------------------*/

/*--------------------------------------------------------TEXT-----------------------------------------------------*/

.labeltxt {
  font-family: Montserrat;
  font-size: 2em;
  font-weight: 500;
}
.login-contact-text {
  font-family: Montserrat;
  font-size: 1em;
  text-align: center;
}
.error_user {
  color: red;
  font-family: Montserrat;
  font-size: 1em;
  font-weight: bold;
}

.error_pass {
  color: red;
  font-family: Montserrat;
  font-size: 1em;
  font-weight: bold;
}
#error-message {
  color: red;
  font-family: Montserrat;
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 50px;
}

/*--------------------------------------------------------TEXT-----------------------------------------------------*/

/*--------------------------------------------------------BUTTON-----------------------------------------------------*/

/*--------------------------------------------------------BUTTON-----------------------------------------------------*/

/*--------------------------------------------------------IMAGE-----------------------------------------------------*/

.image-user {
  background-image: url('../Images/icons/user-login.png');
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-size: cover;

  position: absolute;
  left: 10px;

  height: 30px;
  width: 30px;
  margin-right: 10px;
}

.image-lock {
  background-image: url('../Images/icons/lock.png');
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-size: cover;

  position: absolute;
  left: 13px;

  height: 25px;
  width: 25px;
  margin-right: 10px;
}

.image-logo {
  background-image: url('../../Images/MSI_LOG_BY_JHOREN.png');
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-size: cover;

  position: absolute;

  height: 200px;
  width: 200px;

  animation: image-bounce 10s ease-in-out 1 forwards;
  animation-iteration-count: infinite;

  z-index: 1111;
}

/*--------------------------------------------------------IMAGE-----------------------------------------------------*/

/*--------------------------------------------------------ANIMATION-----------------------------------------------------*/

/* .animate-on-load-1 {
  animation: gradient-show 1s ease-in-out 1 forwards;
} */

/*--------------------------------------------------------ANIMATION-----------------------------------------------------*/

.popup-submit {
  /* padding: 10px; */
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.submit-update {
  height: 50px;
  width: 244px;
  font-family: Montserrat;
  border-radius: 3px;
  font-weight: bold;
  font-size: 1em;
  border: none;
  cursor: pointer;
  color: #fff;
  background-color: #1787ff;
  border: 3px solid #1787ff;
  transition: 0.2s ease-in-out;
}
.submit-update:hover {
  background-color: #fff;
  color: #1787ff;
  border: 3px solid #1787ff;
}
