body {
    padding: 20px;
    margin: 0px;
    display: flex;
    font-family: 'IPST-Regular';
    overflow-y: hidden;
    overflow-X: hidden;
    align-items: center;
    justify-content: center;
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: calc(100vh);
    line-height: 20px;
}

#error {
    font-family: 'IPST-ExtraLight';
}
h2{
    padding-bottom: 30px;
}
h4 {
    font-weight: 500;
}

#loginForm {
    display: flex;
    flex-wrap: wrap;
    padding: 0 50px;
    max-width: 350px;
}

.inputBox{
    display: flex;
    width: 100%;
    align-items: center
}
.inputBox > label{
    width: 20%;
    font-size: 16px;
}
input[type="password"]{
    padding: 0px;
}
input[type="text"]{
    padding: 0px;
}
input {
    width: 100%;
    background: none;
    outline: none;
    border: 0px;
    border-bottom: 1px solid #000;
    line-height: 30px;
    padding: 5px;
    margin: 5px;
}

input:-internal-autofill-selected {
  background-color: rgb(232, 240, 254) !important;
  background-image: none !important;
  color: rgb(0, 0, 0) !important;
}
.loginBox {
    border: 1px solid #000;
    padding: 20px 20px 0px 20px;
}

button {
    margin: 0;
    padding: 0;
    border: 1px solid black;
    background-color: white;
    /* border-radius: 100px; */
    outline: none;
    height: 40px;
}

button:hover {
    margin: 0;
    padding: 0;
    border: 1px solid black;
    background-color: black;
    color: white;
}

#submitBox {
    display: inline-flex;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 10px;
}
.resetPassword{
    color: #1867B0;
    font-size: 14px;
    width: 100%;
    line-height: 20px;
}