*{
    margin: 0px;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
}
.books{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 3%;
}
.font{
    font-size: 20px;
    font-weight: 700;
}
.parent{
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.inner{
    height: 400px;
    width: 300px;
    border: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
}
#form{
    height: 400px;
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5%;
}
.remember{
    height: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2%;
    text-align: center;
}