.copy-card {
    width: 400px;
    min-height: 105px;

    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 28px;

    border: 3px solid #297045;
    border-radius: 24px;

    background: #FEF9FF;
}

.copy-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.copy-label {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #297045;
}
.copy-value {
    font-size: 25px;
    font-weight: bold;
    color: #f5bb00;
}

.copy-button {
    width: 58px;
    height: 58px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: #DFF0E3;
    color: #2E933C;

    cursor: pointer;

    transition:
        transform 0.15s ease,
        background 0.15s ease;
}

.copy-button:hover {
    transform: scale(1.08);
    background: #2E933C;
    color: #FEF9FF;
}
.copy-button:active {
    transform: scale(0.95);
}
.copy-icon {
    font-size: 26px;
}
.copy-button.copied {
    background: #AF3800;
    color: #FEF9FF;
}
