

.code-input {
    width: 60px;
    height: 80px;
    font-size: 2rem;
}

@media (max-width: 576px) {
    .code-input {
        width: 40px;
        height: 60px;
        font-size: 1.5rem;
    }
}

.invert-hover {
    transition: all 0.3s ease-in-out;
}
.invert-hover:hover {
    background-color: white !important;
    color: #212529 !important;
    border-color: white !important;
}


.invert-hover-outline {
    background-color: white;
    color: #212529;
    border: 1px solid #212529;
    transition: all 0.3s ease-in-out;
}
.invert-hover-outline:hover {
    background-color: #212529 !important;
    color: white !important;
    border-color: #212529 !important;
}
