*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
    width: 100%;
    height: 100%;
    
}
.nav{
    width: 100%;
    height: 12%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.nav img{
    width: 60px;
    border-radius: 50%;
}
.nav h1{
    color: #fff;
    font-family: sans-serif;
    font-size: 32px;
}
.form{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.form input{
    padding: 5px 100px;
    border-radius: 10px;
    outline: none;
    font-size: 18px;
    border: 2px solid gray;
}
.form button{
    padding: 8px 30px;
    outline: none;
    background-color: #000;
    color: #fff;
    border: 1px solid gray;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    font-family: sans-serif;
    cursor: pointer;
}
.container{
    max-width: 500px;
    text-align: center;
    background-color: #fff;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;

}
.container img{
    width: 80px;
    height: 80px;
    /* display: flex;
    text-align: center;
    align-items: center;
    justify-content: center; */
    border-radius: 50%;
    margin: 10px auto;

}
/* .card .card-img-top{
    width: 100px !important;
    height: 100px !important;
} */
#bottom{
    width: 100%;
    height: 10%;
    background-color: #000;
    position: absolute;
    bottom: 0;
    text-align: center;
    color: #fff;
    /* margin-top: 5px; */
}