body, html {
  font-family: Arial, sans-serif, Montserrat, sans-serif;
  font-size: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.login-form{
height: 100vh;
  display: grid;
  place-content: center;
}
.input-new {
  position: relative;
  margin: 15px 0 7px;
  transition: 0.2s ease;
}

.input-new input {
  border: 1px solid rgba(249, 249, 250, 0.2);
  width: 310px;
  background: #fff;
  font: inherit;
  color: inherit;
  border-radius: 3px;
  padding: 10px;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  transition: inherit;
}
.input-new input:focus {
  box-shadow: 0 0 0 1px #45a1ff, 0 0 0 4px rgba(69, 161, 255, 0.3),
    0 0 0 1px #45a1ff;
}

.input-new a {
  display: grid;
  align-content: center;
  position: absolute;
  height: calc(100% - 1px);
  padding: 0 4px;
  left: 7px;
  top: 0;
  color: gray;
  pointer-events: none;
  user-select: none;
  transition: inherit;
}
.input-new input:focus + a{
  top: -10px;
  left: 5px;
  height: 15px;
  font-size: 14px;
  box-shadow: inset 0 -5px 0 0 #fff;
  background: #eef1f3;
}
.input-new input:valid + a {
  top: -10px;
  left: 5px;
  height: 15px;
  color: #1a73e8;
  font-size: 14px;
  box-shadow: inset 0 -5px 0 0 #fff;
  background: #eef1f3;
}
.input-new input:focus + a {
  color: #1a73e8;
  box-shadow: inset 0 -9.5px 0 0 #fff;
}
.input-new input:valid{
    border: 2px solid #1a73e8;
}
label span{
    color: red;
}
.error{
   display: block;
   margin-bottom: .3rem;
}
.login-main-text{
    text-align: center;
    padding: 10px;
    color: #fff;
}
.login-main-text img{
    width: 125px;
}
.content-sec{
    padding-top: 20px;
}

.login-main-text h2{
    font-weight: 300;
    color: #000;
}
.login-main-text p{
    color: #000;
}
.btn-login{
    width: 310px;
    color: #fff;
    height: 46.32px;
    font-weight: 600;
    background-color: #1a73e8;
    border-color: #1a73e8;
    padding: .6rem 4rem;
    border-radius: 5px;
    margin-top: 10px;
}
.btn-login:hover{
    opacity: 0.7;
    color: #fff;
}