* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: #dfe2e7;
  color: #1e2b56;
}

.hero {
  background: linear-gradient(180deg, #01489a 0%, #0a428f 100%);
  max-width: 480px;
  margin: 0 auto;
  padding: 12px 12px 10px;
}

.hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  width: min(285px, calc(100% - 50px));
}

.logo {
  width: 100%;
  height: auto;
  display: block;
}

.menu-btn {
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 31px;
  cursor: pointer;
  padding: 3px;
  line-height: 1;
}

.hero-controls {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.lang-select {
  width: 56%;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  color: #111;
  font-size: 22px;
  padding: 7px 10px;
  appearance: auto;
}

.socials {
  display: flex;
  gap: 12px;
}

.social {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 19px;
}

.social.fb {
  background: #5f72b5;
}

.social.ig {
  background: #1f1f22;
}

.social.yt {
  background: #ea231e;
}

.content {
  max-width: 480px;
  margin: 0 auto;
  background: #eceef2;
  padding: 10px 12px 18px;
}

.notice h1 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.1;
  color: #072970;
  font-weight: 800;
}

.notice .lead {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.4;
  color: #404754;
}

.notice-box {
  border-left: 4px solid #183695;
  background: #e3e5e9;
  padding: 10px 11px;
  margin: 0 0 10px;
}

.notice-box p {
  margin: 3px 0;
  font-size: 14px;
  color: #2f3440;
}

.notice > p {
  margin: 0 0 8px;
  font-size: 15px;
  color: #404754;
  line-height: 1.4;
}

.notice ul {
  margin: 0 0 12px 17px;
  padding: 0;
  color: #3e4552;
}

.notice li {
  margin: 0 0 4px;
  line-height: 1.35;
  font-size: 14px;
}

.confirm-btn {
  display: block;
  margin: 0 auto;
  border: 0;
  background: #0f4ea8;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 10px 16px;
  border-radius: 3px;
  min-width: 200px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.bank-selection h1 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.1;
  color: #072970;
  font-weight: 800;
}

.bank-subtitle {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.4;
  color: #404754;
}

.bank-list {
  display: grid;
  gap: 10px;
}

.bank-item {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #ffffff;
  border: 1px solid #c9d2e4;
  border-radius: 10px;
  padding: 11px 12px;
  text-decoration: none;
  color: #1f315f;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 1px 0 rgba(12, 35, 89, 0.05);
}

.bank-item:hover {
  background: #eef4ff;
  border-color: #b8c9ef;
}

.bank-item:active {
  transform: scale(0.995);
}

.bank-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #0f4ea8;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.bank-name {
  flex: 1;
  font-size: 16px;
}

.bank-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bank-logo-badge {
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d3d9e6;
}

.bank-item i {
  font-size: 13px;
  color: #7f8ca8;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  text-decoration: none;
  color: #0f4ea8;
  font-size: 14px;
  font-weight: 600;
}

.user-form {
  display: grid;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #c9d2e4;
  border-radius: 10px;
  padding: 12px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #1f315f;
  margin-top: 2px;
}

.form-input {
  width: 100%;
  border: 1px solid #bcc8de;
  border-radius: 6px;
  padding: 10px 11px;
  font-size: 15px;
  color: #1e2b56;
  background: #ffffff;
}

.form-input:focus {
  outline: none;
  border-color: #0f4ea8;
  box-shadow: 0 0 0 2px rgba(15, 78, 168, 0.15);
}

.user-form .confirm-btn {
  margin-top: 8px;
}

@media (max-width: 540px) {
  .notice h1 {
    font-size: 31px;
  }

  .bank-selection h1 {
    font-size: 29px;
  }

  .lang-select {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .hero,
  .content {
    max-width: 560px;
  }
}
