.login-b{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-position: fixed;
    background-attachment: fixed;
    background-size: cover;
}
.login-base{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding:0.3rem 1rem;
    margin-top: 5rem;
    border-radius: 1vh;
    width:30%;
    background-color: rgba(245, 245, 245, 0.6);
    filter:drop-shadowrgba(174, 175, 245, 0.61)rgb(7, 21, 59);
    border:2px inset rgb(38, 87, 179)
}
.login-base h1{
    text-align: center;
    padding-bottom: 1rem;
    width: 100%;
    font-size: 2rem;
}
.login-form{
    padding-top: 1rem;
    display: block;
    width: 100%;
}

.login-form .lbl{
    font-size: medium;
    font-weight: 600;
    color: midnightblue;
    margin: 0.2rem 0 ;
    text-shadow: 0 0 2px #372557;
    position: relative;
}
.login-form .txt{
    width: 100%;
    border-radius: 1vh;
    background: transparent;
    outline: none;
    border: 2px solid rgb(137, 80, 175);
    padding:0 0.5rem;
    margin-bottom: 0.5rem;
    height: 2.3rem;
    font-weight: 600;
    color:rgb(5, 26, 49);
}   
.login-form .txt:focus{
    border-color: cornflowerblue;
    color: rgb(58, 19, 1);
}
.log-in{
    width: 6rem;
    color: #fff;
    border-radius: 1vh;
    font-weight: 600;
    margin-left: 0.95rem;
    box-shadow: 0 5px 10px rgba(118, 85, 225, .6);
    border: 2px double transparent;
    height: 2rem;
    background-image: linear-gradient(to right,#7199f9 20%,#a371f9),radial-gradient(circle at top left,#7199f9,#a371f9);
}
.log-in:hover{
    border:2px solid #4458dc;
    color: #222;
    background-image: none;
    background-color: lightcyan;
    text-shadow: 1px 1px 2px #372557;
}

.sign-in{
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid #4458dc;
    display: inline-block;
    box-sizing: content-box;
    width: 5.5rem;
    padding: 3px;
    text-align: center;
    border-radius: 1vh;
    height: 1.5rem;
    color: #222;
    background-color: lightcyan;
    text-shadow: 1px 1px 2px #372557;
}
.button
{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.sign-in:hover{
    box-shadow: 0 5px 10px rgba(118, 85, 225, .6);
    color: #fff;
    border: 2px double transparent;
    background-image: linear-gradient(to right,#7199f9 20%,#a371f9),radial-gradient(circle at top left,#7199f9,#a371f9);
}
.required{
    color: red;
    font-size: small;
    position: absolute;
    font-weight: 400;
    top: 0%;
}
.show-pass{
    color: rgb(173, 0, 0)!important;
    font-size: small!important;
    font-weight: 400!important;
    position: absolute!important;
    margin-top: 1rem!important;
    right:20!important;
    text-shadow: 0 0 1px #372557!important;
}
.show-pass:hover{
    color: rgb(58, 2, 131)!important;
}
.show-pass:active{
    color:rgb(0, 173, 115)!important;
}
.error{
    max-width:100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0 0.2rem;
    margin-top: 0.5rem;
    height:2rem;
    background-color: rgba(238, 182, 163, 0.479);
    border-radius: 10vh;
    border: 2px solid white;
    color:red;
    display: none;
    font-size: smaller;
    font-weight: 600;
}