@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&display=swap');
::selection {
  background: #2D2F36;
}
::-webkit-selection {
  background: #2D2F36;
}
::-moz-selection {
  background: #2D2F36;
}
body {
  /* background-image: url(../img/bg-login-sea.jpg); */
  background-image: linear-gradient(135deg, #30578a 10%, #1c613f 100%);
  font-family: 'Inter UI', sans-serif;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
  padding: 60px;
}
/*==================================================
 * Effect 5
 * ===============================================*/
.effect5
{
  position: relative;
}
.effect5:before, .effect5:after
{
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 25px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width:300px;
  background: #0000005c;
  -webkit-box-shadow: 0 35px 20px #0000005c;
  -moz-box-shadow: 0 35px 20px #0000005c;
  box-shadow: 0 35px 20px #0000005c;
  -webkit-transform: rotate(-8deg);
  -moz-transform: rotate(-8deg);
  -o-transform: rotate(-8deg);
  -ms-transform: rotate(-8deg);
  transform: rotate(-8deg);
}
.effect5:after
{
  -webkit-transform: rotate(8deg);
  -moz-transform: rotate(8deg);
  -o-transform: rotate(8deg);
  -ms-transform: rotate(8deg);
  transform: rotate(8deg);
  right: 10px;
  left: auto;
}
.page {
  background-image: url(../img/bg-login-sea.jpg);
  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  height: calc(100% - 120px);
  position: absolute;
  place-content: center;
  width: calc(100% - 100px);
  border-radius: 30px;
}
@media (max-width: 767px) {
  .page {
    /* height: auto; */
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.container {
  display: flex;
  height: 320px;
  margin: 0 auto;
  width: 800px;
}
@media (max-width: 767px) {
  .container {
    flex-direction: column;
    height: 630px;
    width: 400px;
  }
}
.left {
  /* background: #96b593; */
  background: #fff;
  height: calc(100% - 40px);
  top: 20px;
  position: relative;
  width: 50%;
  border-radius: 15px;
  box-shadow: -5px 5px 10px rgb(0 0 0 / 25%);
}
@media (max-width: 767px) {
  .left {
    height: 100%;
    width: calc(100% - 40px);
    max-height: 270px;
    top: 15px !important;
  }
}
.add-shadow {
	text-shadow:-1px 4px 6px rgba(0,0,0,0.64);
}
.login {
  font-size: 30px;
  font-weight: 900;
  margin: 23px 10px;
  color: #ffffff;

}
.eula {
  color: #474a59;
  font-size: 14px;
  line-height: 1.5;
  margin: 10px;
}
.right {
  background-image: linear-gradient(135deg, #30578a 10%, #1c613f 100%);
  box-shadow: 0px 0px 40px 16px rgba(0,0,0,0.22);
  color: #F1F1F2;
  position: relative;
  width: 50%;
  border-radius: 15px;
}
@media (max-width: 767px) {
  .right {
    flex-shrink: 0;
    height: 100%;
    width: 100%;
    max-height: 350px;
    right: 20px;
  }
  .page {
    background: transparent !important;
  }
  body {
    padding: 0 !important;
    max-width: 350px;
    margin: auto!important;
    float: none!important;
  }
  .effect5 {
    width: 0px !important;
  }
  svg {
    display: none;
  }
}
svg {
  position: absolute;
  width: 535px;
}
path {
  fill: none;
  stroke: url(#linearGradient);;
  stroke-width: 4;
  stroke-dasharray: 240 1386;
}
#main-holder {
  width: 50%;
  height: 70%;
  display: grid;
  justify-items: center;
  align-items: center;
  background-color: white;
  border-radius: 7px;
  box-shadow: 0px 0px 5px 2px black;
}

#login-error-msg-holder {
  width: 100%;
  height: 20%;
  display: grid;
  justify-items: center;
  align-items: center;
  position: absolute;
  z-index: 1;
}

#login-error-msg {
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 5px;
  font-size: 12px;
  font-weight: bold;
  color: #8a0000;
  border: 1px solid #8a0000;
  background-color: #e58f8f;
  opacity: 0;
}

#error-msg-second-line {
  display: block;
}
.form {
  margin: 40px 50px;
  position: absolute;
}
label {
  color:  #ffffff;
  display: block;
  font-size: 14px;
  height: 18px;
  margin-top: 20px;
  margin-bottom: 5px;
}
input {
  background: #ffffff;
  border: 0;
  color: #3e3e3e;
  font-size: 20px;
  height: 30px;
  line-height: 30px;
  outline: none !important;
  width: 100%;
}
input::-moz-focus-inner { 
  border: 0; 
}
#submit {
  background: transparent;
  color: #ffffff;
  border: 3px solid #ffffff;
  margin-top: 40px;
  transition: color 300ms;
  height: 40px;
}
#submit:focus {
  color: #baffb2;
}
#submit:active {
  color: #d0d0d2;
}
