/*OVERRIDE CSS*/


* {
    box-sizing: border-box;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.LoginPageBody{
    
    background-image: url("../img/bg1.png");
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #292A2D;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: auto;
    min-width: 360px;
}

.LoginPageBody::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: inherit;
  background-size: inherit;
  background-position: inherit;
  filter: blur(2px);
}

.FooterText{
    /* bottom: 0; */
    /* position: absolute; */
    /* width: 100%; */
    /* margin-bottom: 20px; */
    color: #676560;
    /* overflow: hidden; */
    padding: 0 30px;
}

.footerPart{
    height: 60px;
    width: 100%;
    z-index: 10;
    align-content: center;
    justify-content: center;
}

.headerPart{
    height: 60px;
    width: 100%;

}

.bodyPart{
    height: 100%;
    width: 100%;
    z-index: 10;
    flex-grow: 1;
    align-content: center;
}

input[type=text], input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    border: none;
    background: #f1f1f1;
}

.LoginForm{
    /* position: absolute;
    right: 0;
    left: 0;
    top: 10%;
    bottom: 10%; */

    margin: auto;
    max-width: 600px;
    /* max-height: 450px; */
    width: 100%;
    height: 70%;

    padding: 10px;
    background-color: white;
    border: 2px solid gray;
    border-radius: 12px;

    min-width: 320px;
    min-height: 450px;
}

.LoginButton {
    background-color: #4CAF50;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.8;
    margin-bottom: 20px;
}

.LoginButton:hover {
    opacity: 1;
}