body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
background-color: rgb(255, 243, 220);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 90vh;
    gap: 20px;
}

button {
    border-radius: 8px;
}

button:hover {
    cursor: pointer;
    background-color: lightblue;
}

button:active {
    background-color: rgb(122, 166, 180);
    color: white;
    border-color: rgb(0, 96, 126);
}

.verify-button {
    width: auto;
    font-size: 15px;
    background-color: rgb(159, 244, 255);
}

.verify-button:hover {
    cursor: pointer;
    background-color: rgb(138, 225, 236);
}

.verify-button:active {
    background-color: rgb(22, 171, 190);
    color: white;
    border-color: rgb(36, 75, 80);
}

.stickers-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.sticker-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sticker-item img {
    width: 400px;
    height: 230px;
    object-fit: cover
}

.text-result {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    color: rgba(0, 0, 0, 0);
}

.password-selector-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.password-selector-container select {
    font-size: 20px;
    border-radius: 8px;
    padding: 5px;
}