/**
 * Release Date: 2025-05-08 20:33:00
 */


.qa-iban-calculator {
    max-width: 24rem;
    width: 100%;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

#qa-iban-calculator-form {
    display: flex;
    column-gap: 20px;
    row-gap: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgb(91 31 30);
    padding: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.form-group.left {
    margin-bottom: 15px;
    width: calc(30% - 20px);
}

.form-group.right {
    margin-bottom: 15px;
    width: calc(70% - 20px);
}

#qa-iban-calculator-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
}

#qa-iban-calculator-form input[type="text"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.btn-calculate {
    width: 60%;
    padding: 15px 20px;
    background-color: #a41110;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.btn-calculate:hover {
    background-color: #740000;
}

.result-container {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #a41110;
    color: white;
    border-radius: 8px;
}

.error-container {
    margin-top: 15px;
    padding: 12px;
    background-color: #fdecea;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    color: #721c24;
}

.error-message {
    display: flex;
    align-items: center;
}

.error-icon {
    display: inline-block;
    margin-right: 10px;
    background-color: #f44336;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-weight: bold;
}

#iban-number {
    display: block;
    font-size: 1rem;
}

@media only screen and (max-width: 480px) {
    .form-group.left {
        width: 100%;
    }
    .form-group.right {
        width: 100%;
    }
}