a{
    text-decoration: none;
    color: #1A1A1A;
}

body {
    background-color: #f3e9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.payment-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 450px;
    width: 100%;
    padding: 25px;
    position: relative;
}

.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #6c757d;
}

.payment-label {
    color: #8a94a6;
    font-size: 14px;
    margin-bottom: 5px;
}

.payment-value.values {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    /*border: 1px solid #e0e0e0;*/
    padding: 7px;
}

.purple-text {
    color: #9c27b0;
}

.operator-option {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 90px;
    position: relative;
}

.operator-option.selected {
    border: 2px solid #9c27b0;
    background-color: #f9f0ff;
}

.operator-option img {
    max-height: 40px;
    margin-bottom: 5px;
}

.operator-name {
    font-size: 12px;
    text-align: center;
}

.operator-checkbox {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 18px;
    height: 18px;
    accent-color: #9c27b0;
}

.operator-label {
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
}

.btn-cancel {
    background-color: white;
    color: #9c27b0;
    border: 2px solid #9c27b0;
    border-radius: 25px;
    padding: 10px 30px;
    font-weight: bold;
}

.btn-pay {
    background-color: #f8f9fa;
    color: #d0d0d0;
    border: none;
    border-radius: 25px;
    padding: 10px 30px;
    font-weight: bold;
    cursor: not-allowed;
}

.btn-pay.active {
    background-color: #9c27b0;
    color: white;
    cursor: pointer;
}

.footer-text {
    color: #b0b0b0;
    font-size: 12px;
    text-align: center;
    margin-top: 20px;
}

.footer-text img{
    height: 75px;
}

.phone-input {
    display: flex;
    margin-bottom: 20px;
}

.phone-prefix {
    background-color: white;
    border: 1px solid #ced4da;
    border-right: none;
    border-radius: 5px 0 0 5px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
}

.flag {
    width: 24px;
    margin-right: 5px;
}

.phone-input input {
    border-radius: 0 5px 5px 0;
}

.mb-4.display{
    width: 100%;
    height: auto;
    padding: 2px;
    /*background: black;*/
}