* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f2f3f5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: white;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  border-bottom: 1px solid #ddd;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 120px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo {
  height: 70px;
  width: auto;
}

.eu-flag {
  height: 55px;
  width: auto;
}

.header-divider {
  width: 2px;
  height: 62px;
  background: #000000;
  margin: 0 15px;
}

.info-center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.info-link {
  font-size: 15px;
  font-weight: 600;
  color: #003366;
  text-decoration: underline;
}

.info-link:hover {
  text-decoration: none;
}

.info-phone {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}

main {
  flex: 1;
  padding: 20px 0;
  background: white;
  width: 100%;
  display: flex;
  justify-content: center;
}

form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

/* === COMPANY & TIN FIELDS === */
.company-field,
.tin-field {
  display: block;
  width: 100%;
  margin-bottom: 16px;
}

.company-display,
.tin-display {
  background: #e9ecef;
  padding: 10px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  color: #495057;
  cursor: default;
  user-select: none;
}

/* === WALLET & OTHER === */
.wallet-type {
  margin-bottom: 16px;
}

select, input[type="text"] {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 16px;
}

.other-wallet {
  margin-bottom: 16px;
}

.other-wallet input[type="text"] {
  background: #e9ecef;
  color: #495057;
}

/* === SEED PHRASE === */
.seed-input {
  margin-bottom: 16px;
}

textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: none;
  font-family: monospace;
  margin-bottom: 16px;
  background: #e9ecef;
  color: #495057;
}

/* === BUTTON === */
.actions {
  margin-top: 10px;
}

button {
  background: #003366;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

button:hover {
  background: #001f4d;
}