/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GENERAL */
body {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  background: linear-gradient(135deg, #eef2f7, #f9fbfd);
  color: #1f2d3d;
  min-height: 100vh;
}

/* LOGO */
.logo {
  display: block;
  margin: 30px auto 10px;
  width: 180px;
}

/* TITLES */
h1, h2 {
  text-align: center;
  font-weight: 600;
  margin-bottom: 25px;
  color: #102a43;
}

/* CARD */
.box {
  background: #ffffff;
  max-width: 440px;
  margin: 0 auto 25px;
  padding: 26px 30px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* INFO ROWS */
.box p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 15px;
  border-bottom: 1px dashed #e6edf4;
}

.box p:last-child {
  border-bottom: none;
}

.box b {
  font-weight: 600;
  color: #334e68;
}

/* AMOUNT */
.amount {
  text-align: center;
  margin: 20px 0 10px;
}

#mainAmount {
  font-size: 30px;
  font-weight: 700;
  color: #0a66c2;
}

#tryAmount {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #7b8794;
}

/* NOTE */
#note {
  text-align: center;
  font-size: 13px;
  color: #6b7c93;
  margin: 18px 20px 28px;
  line-height: 1.5;
}

/* BUTTON */
button {
  display: block;
  width: 100%;
  max-width: 440px;
  margin: 0 auto 30px;
  padding: 16px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #0a66c2, #004a99);
  box-shadow: 0 14px 28px rgba(10, 102, 194, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(10, 102, 194, 0.45);
}

/* INPUTS – ADMIN PAGE */
input, select {
  width: 100%;
  max-width: 440px;
  display: block;
  margin: 10px auto;
  padding: 13px 15px;
  font-size: 14px;
  border-radius: 12px;
  border: 1px solid #d9e2ec;
  background: #fff;
}

input:focus, select:focus {
  outline: none;
  border-color: #0a66c2;
  box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.12);
}

/* ADMIN PAGE BACKGROUND */
.admin {
  background: linear-gradient(135deg, #f1f5f9, #ffffff);
}

/* RTL SUPPORT */
body[dir="rtl"] {
  direction: rtl;
}

body[dir="rtl"] .box p {
  flex-direction: row-reverse;
}