.two-factor-container {
    text-align: center;
    padding: 1.25rem;
}

.two-factor-container h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.two-factor-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.two-factor-container .two-factor-input {
    width: 50px;
    height: 50px;
    font-size: 24px;
    text-align: center!important;
    border: 2px solid #3b4046;
    /*border-radius: 8px;*/
    transition: border 0.2s ease-in-out;
    caret-color: transparent;
}

.two-factor-container .two-factor-input:focus {
    border-color: rgba(121, 62, 250, 0.6);
    outline: none;
    box-shadow: 0 0 0.5rem 0 rgba(121, 62, 250, 0.8);
}

.logo-container img {
    max-width: 120px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: .5rem;
}

.qr-code-container img {
    max-width: 200px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.secret-key {
    font-weight: bold;
    font-size: 18px;
    color: #333;
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 8px;
    display: inline-block;
}

.error-message {
    color: red;
    margin-top: 5px;
    font-size: 14px;
}

.btn-settings {
    margin-top: 20px;
    width: 100%;
    padding: 12px !important;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}