/* 여기에 작업 또는 수정할 당신의 css style을 설정하세요. (customizations) */

.btn-exchange {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(79, 172, 254, 0.3);
    transition: all 0.25s ease;
    letter-spacing: -0.3px;
    text-align: center;
  }
  .btn-exchange:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
  }
  .btn-exchange:active {
    transform: translateY(0);
  }