* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
button {
    cursor: pointer;
}
a {
    text-decoration: none;
    color: #000
}
input:focus,
select:focus,
textarea:focus {
    outline: 0;
}

.root{
    width: 100vw;
    max-width: 1600px;
}
.mainPageWrapper{
    width: 100%;
    min-height: 100vh;
}
.mainPageWrapper .BackgroundWrapper{
    width: 100%;
    height: 100%;
}
.mainPageWrapper .BackgroundWrapper *{
    width: 100%;
    height: 100%;
}
.mainPageWrapper .BackgroundWrapper .Bg1{
    background: url(/assets/images/LoginFormBackground.jpg) no-repeat center;
    background-size: cover;
}
.mainPageWrapper .BackgroundWrapper .Bg2{
    background: url(i/pexels-pixabay-5317671.jpg) no-repeat center;
    background-size: cover;
}
.mainPageWrapper .mainPageContainer{
    min-height: 100vh;
    padding: 5%;
}
.mainPageWrapper .mainPageContainer .LoginFormContainer{
    width: 100%;
    padding: 20px;
    max-width: 500px;
    border-radius: 25px;
    border: 2px solid silver;
    backdrop-filter: blur(25px);
    box-shadow: 
    0 0 50px #00000010;
    /* inset 0 0 50px #00000020; */
    background: linear-gradient(to bottom, #c3f2fe90 30%, #ffffff50);
}
.mainPageWrapper .mainPageContainer .LoginFormContainer .LoginIcon{
    margin: auto;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #fff;
}
.mainPageWrapper .mainPageContainer .LoginFormContainer .Heading{
    text-align: center;
    font-size: 150%;
    font-weight: 700;
    margin: 20px 0 10px;
}
.mainPageWrapper .mainPageContainer .LoginFormContainer .Description{
    text-align: center;
    font-weight: 500;
    color: #585858;
}
.mainPageWrapper .mainPageContainer .LoginFormContainer .Input{
    display: flex;
    align-items: center;
    position: relative;
    height: 45px;
    margin-top: 20px;
}
.mainPageWrapper .mainPageContainer .LoginFormContainer .Input svg{
    width: 30px;
    height: auto;
    position: absolute;
    left: 5px;
    border-radius: 5px;
    overflow: hidden;
}
.mainPageWrapper .mainPageContainer .LoginFormContainer .Input input{
    height: 100%;
    width: 100%;
    border-radius: 10px;
    border: none;
    padding-right: 10px;
    padding-left: 45px;
}
.mainPageWrapper .mainPageContainer .LoginFormContainer .ForgetPassword{
    text-align: right;
    font-size: 90%;
    margin-top: 10px;
    font-weight: 500;
}
.mainPageWrapper .mainPageContainer .LoginFormContainer .Form button{
    width: 100%;
    height: 50px;
    border-radius: 10px;
    background: #000;
    color: #fff;
    margin-top: 20px;
    border: none;
    transition: .3s;
}
@keyframes btn {
    0%,100%{
        transform: scale(1);
    }
    50%{
        transform: scale(0.95);
    }
}