.loginform{
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: aliceblue;
}

.aler-view{
    position: fixed;
    top: 1%;
    right: 1%;
    height: 70px;
    width: 30%;
    /* background-color: #2ecc71; */
    z-index: 99;
}
.logoimg{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: rgb(88, 88, 88);
}
.loginform h2{
    font-size: 2rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 500;

}
.loginform h4{
    font-size: 1rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.usebox{
    height: 50px;
    width: 300px;
    background-color: rgb(50, 50, 50);
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    border-radius: 20px;
    padding-left: 10px;
    margin: 20px 0;
}
.passbox{
    height: 50px;
    width: 300px;
    background-color: rgb(50, 50, 50);
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    border-radius: 20px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}
.view{
    cursor: pointer;
}
.inputbox{
    height: 100%;
    width: 100%;
    background-color:transparent;
    outline: none;
    border: none;
}
.inputboxe{
    height: 100%;
    width: 100%;
    background-color:rgb(50, 50, 50);
    outline: none;
    border: none;
    border-radius: 20px;
}
.forget{
    height: 50px;
    width: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
.forget h2{
    font-size: 1rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 500;
}
.button{
    cursor: pointer;
    height: 40px;
    width: 200px;
    background-color: brown;
    font-size: 1.4rem;
    font-weight: 500;
    border-radius: 5px;
}


@media (max-width:500px) {
    .usebox {
        width: 100%;
    }
    .passbox {
        margin-top: 15px;
        width: 100%;
    }
    .forget {
        width: 100%;
        flex-wrap: wrap;
    }
    .loginform {
        padding: 30px 10px;
    }
    .loginform h4 {
        font-size: 0.8rem;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        text-align: center;
    }
    .button{
        width: unset;
        margin-top: 5px;
        padding: 0px 20px;
    }
    .aler-view{
        width: 90%;
    }
    .loginform h2 {
        text-align: center;
    }
}