/* Основной контент */
.content {
    padding: 25px 20px;
}

/* Секция обмена */
.exchange-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid #2a7a2a;
}

.exchange-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.exchange-row:last-child {
    margin-bottom: 0;
}

.exchange-label {
    font-size: 16px;
    color: #8ba3c7;
    font-weight: 500;
}

.exchange-value {
    font-size: 20px;
    font-weight: 700;
    color: #e1e1e1;
}

.exchange-currency {
    font-size: 16px;
    color: #1f7824;
    font-weight: 600;
    margin-left: 5px;
}

/* Секция получателя */
.recipient-section {
    background-color: #ffffff0d;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid #2a7a35;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::before {
    content: "•";
    color: #1f7824;
    font-size: 24px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-label {
    font-size: 14px;
    color: #e1e1e1;
    flex: 1;
}

.info-value {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    text-align: right;
    flex: 1;
    line-height: 1.4;
}

.phone-number {
    font-size: 18px;
    font-weight: 600;
    color: #4a9eff;
}

.name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.address {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
}

/* Чекбокс согласия */
.agreement-section {
    background-color: #4aff681a;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid #1f7824;
    display: flex;
    align-items: center;
    gap: 15px;
}

.checkbox-container {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.checkbox {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background-color: #1a5f1e;
    border: 2px solid #4aff59;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox:checked+.checkmark {
    background-color: #1f7824;
    border-color: #1f7824;
}

.checkbox:checked+.checkmark::after {
    content: "✓";
    color: #e1e1e1;
    font-size: 16px;
    font-weight: bold;
}

.agreement-text {
    font-size: 16px;
    color: #e1e1e1;
    font-weight: 500;
    line-height: 1.4;
}

/* Кнопки */
.buttons-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn {
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-confirm {
    background-color: #1f7824;
    color: #e1e1e1;
}

.btn-confirm:disabled{
    background-color: #333;
    opacity: 0.3;

}

.btn-edit {
    background-color: #b22222dc;
    color: #e1e1e1;
}





.btn:active {
    transform: translateY(0);
}