*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
html,body{
    background-color: #3e5c76;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
h3{
    font-weight: 700;
    color: whitesmoke;
}
input{
    margin-top: 25px;
    margin-bottom: 25px;
    background-color: #f0ebd8;
    font-size: 20px;
    padding: 15px 10px;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 5px;

}
#qri{
    margin-left: 150px;
    margin-bottom: 15px;
    /* border: 5px solid white; */
}

input::placeholder{
    color: #3e5c76;
    font-size:  medium;
}
#container{
    background-color: #001d3d;
    padding: 25px;
    height: fit-content;
    width: 500px;
    border-radius: 10px;
}

button{
    width: 100%;
    height: 5vh;
    /* border-radius: 10px; */
    border: none;
    background-color: #ffc300;
    color: black;
    font-weight: 800;
    font-size: 15px;
}
button:hover{
    border: 1px solid black;
}