.exchange-container {
    background:  var(--background-grey);;
    border-radius: 25px;
    padding: 32px;
  }
  
  .exchange-title {
    margin-bottom: 8px;
  }
  
  .exchange-rate {
    line-height: 100%;
    margin-bottom: 8px;
  }

  .exchange-hint {
    font-size: 12px;
    line-height: 100%;
  }
  
  .exchange__currency {
    color: var(--background-blue);
  }

  .exchange__currency--give,
  .exchange__currency--receive {
    transition: all 0.3s ease;
  }
  
  .exchange-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .exchange-row {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    margin-top: 16px;
  }
  
  .exchange-column {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .exchange-column--button {
    flex: 0.5;
  }
  
  .input-group {
    display: flex;
    gap: 0;
    margin-top: 8px;
    position: relative;
    background: white;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 65px;
    transition: border-color 0.3s ease;
  }
  
  .input-group input,
  .input-group select {
    flex: 1;
    padding: 12px 24px;
    border: none;
    background: transparent;
    font-size: 14px;
    height: 100%;
    outline: none;
  }

  .input-group select {
    cursor: pointer;
    appearance: none;
    background-repeat: no-repeat;
  }

  .input-group input:focus,
  .input-group select:focus {
    outline: none;
  }

  .input-group input.invalid {
    border-color: var(--text-error);
    color: var(--text-error);
  }

  .input-group input.invalid::placeholder {
    color: var(--text-error);
  } 

  .input-group input:read-only {
    cursor: not-allowed;
  }
  
  .currency-selector {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 30px;
    border-radius: 100px;
    background: var(--background-blue);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .currency-selector.invalid {
    background: var(--background-invalid);
  }

  .currency-selector select {
    font-weight: 700;
    padding: 0 20px 0 20px;
    background-image: url('/static/images/arrow-down-white.svg');
    background-position: right 8px center;
    background-size: 12px;
    color: var(--text-light);
  }

  .currency-selector.invalid select {
    color: var(--text-error);
  }
  
  .exchange-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
    align-self: flex-start;
  }

  .arrow-button {
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .arrow-button:hover {
    transform: scale(1.1);
  }

  .city-selector {
    width: 100%;
    height: 100%;
  }

  .city-selector select {
    width: 100%;
    height: 100%;
    padding: 0 32px 0 24px;
    background-image: url('/static/images/arrow-down-black.svg');
    background-size: 18px;
    background-position: right 24px center;
  }
  
  .exchange-button {
    font-weight: 700;
    background: var(--background-blue);
    color: var(--text-light);
    border: none;
    border-radius: 100px;
    padding: 0 32px;
    font-size: 16px;
    width: 100%;
    height: 65px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
  }

  .exchange-button:hover {
    background: var(--background-blue-hover);
    transform: translateY(-2px);
  }

  .exchange-button:disabled {
    cursor: not-allowed;
    transform: none;
    opacity: 0.7;
    cursor: not-allowed;
  }
  label {
    font-family: var(--font-tertiary);
    font-weight: 600;
    font-size: 14px;
    display: block;
  }

  @media (max-width: 768px) {
    .exchange-container {
      padding: 24px;
    }

    .exchange-row {
      flex-direction: column;
      gap: 20px;
    }

    .exchange-column {
      width: 100%;
    }

    .exchange-column--button {
      width: 100%;
    }

    .exchange-arrow {
      align-self: center;
      padding: 8px;
    }

    .input-group input,
    .input-group select {
      font-size: 12px;
    }

    .exchange-hint {
      font-size: 10px;
    }
  }