body{
    overflow-y: hidden;
    min-width: 100vw;
    min-height: 100vw;
    margin:0;
    padding:0;
  
}

h1{
    display: none;
}

h1~img{
    margin-top: 1vw;
    width:200px;
}

.loginScreen{
    min-width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    background-color: #8d0359;
}

.centerCont{
    background-color: #e8e8e8;
    width: 560px;
    height: 300px;
    position: relative;
    bottom: 5vh;
    border-radius: 10px 10px 10px 10px;
    font-family: Poppins;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    color: #141414;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 12px -2px, rgba(0, 0, 0, 0.06) 0px 4px 8px -2px;
    border-collapse: collapse;
}

.input-group{
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-icon-img{
    height: calc(1.5em + 1rem - 5px);
}
input {
    border: 1px solid rgb(22, 22, 22);
    border-radius: 5px 5px 5px 5px;
    margin: 5px;
    height: calc(1.5em + 0.8rem + 2px);
}

button {
    color: #e84c05;
    margin-top: 20px;
    font-family: Poppins;
    width: 330px;
    padding: 1em;
    font-size: 10px;
    font-weight: 550;
    border-radius: 0.5em;
    background-color: #ffd400;
    cursor: pointer;
    border: 2px solid #e8e8e8;
    transition: all 0.3s;
    justify-self: flex-end;
  }
  
button:hover {
    border: 2px solid #e84c05;
  }


#formpassw{
    padding-top:7vh;
}
  
form ~ a{
    font-size: 10px;
}

button:active {
    background-color: #dddddd;
  }

.error-msg-login{
    position: absolute;
    top: 80vh;
    background-color: #ff2f2f;
    font-size: 14px;
    width: 560px;
    height: 52px;
    border-radius: 10px 10px 10px 10px;
    font-family: Poppins;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    color: #e2e2e2;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 12px -2px, rgba(0, 0, 0, 0.06) 0px 4px 8px -2px;
    border-collapse: collapse;
}
