form {
  margin: 0 auto;
}
.radio-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style-type: none;
  padding: 0 !important;
  margin: 0 !important;
}
.radio-list li {
  display: flex;
  align-items: center;
}
.radio-input {
  display: none;
}
.radio-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px;
  color: #6b7280;
  background-color: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.radio-label:hover {
  border-color: #2563eb;
}
.radio-input:checked + .radio-label {
  color: #2563eb;
  border-color: #2563eb;
  background-color: #eff6ff;
}
.status-license {
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding-bottom: 0.25rem;
  padding-top: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: 0.25rem;
  font-weight: 400;
  margin-left: 0.5rem;
  background-color: rgb(220 252 231);
  color: rgb(22 101 52);
}
.label-content {
  flex-grow: 1;
  line-height: 30px;
}
.label-title {
  font-size: 1rem;
  font-weight: 600;
}
.label-description {
  font-size: 0.975rem;
  color: #6b7280;
}
.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  margin-left: 10px;
  transition: all 0.3s ease;
}
.radio-input:checked + .radio-label .checkmark {
  border-color: #2563eb;
  background-color: #2563eb;
}
.e-connect-actions {
  padding-top: 15px;
  text-align: center;
}
.app-button {
  padding: 10px 20px;
  background-color: #2563eb;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.app-button:hover {
  background-color: #1e4bb5;
}
@media (max-width: 768px) {
  .radio-list {
    gap: 8px;
  }
  .radio-label {
    padding: 10px;
  }
  .label-title {
    font-size: 0.875rem;
  }
  .label-description {
    font-size: 0.75rem;
  }
  .checkmark {
    width: 16px;
    height: 16px;
  }
  .app-button {
    padding: 8px 16px;
  }
	
	.license-wrapper {
		width: 90%;
	}
}
:root {
  --radio-border-color: #8b8c89;
  --radio-checked-color: #274c77;
  --radio-hover-color: #a3cef1;
  --radio-disabled-bg-color: #d9d9d9;
}
input[type='radio'] {
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  margin: 6px;
  padding: 0;
  border: 2px solid var(--radio-border-color);
  border-radius: 50%;
  appearance: none;
  background-color: transparent;
  outline: 0;
  transition: outline 0.1s;
}
input[type='radio']:not(:disabled):checked {
  border-color: var(--radio-checked-color);
  background-color: var(--radio-checked-color);
  background-clip: content-box;
  padding: 2px;
  background-image: radial-gradient(
    circle,
    var(--radio-checked-color) 0,
    var(--radio-checked-color) 50%,
    transparent 60%,
    transparent 100%
  );
}
input[type='radio']:disabled {
  background-color: var(--radio-disabled-bg-color);
}
input[type='radio']:disabled:checked {
  background-image: radial-gradient(
    circle,
    var(--radio-border-color) 0,
    var(--radio-border-color) 50%,
    transparent 50%,
    transparent 100%
  );
}
@media (hover: hover) {
  input[type='radio']:not(:disabled):hover {
    background-color: var(--radio-hover-color);
    outline: 6px solid var(--radio-hover-color);
    transform: scale(1.05);
  }
}
input[type='radio']:focus-visible {
  background-color: var(--radio-hover-color);
  outline: 6px solid var(--radio-hover-color);
  transform: scale(1.05);
}
@media (prefers-reduced-motion: reduce) {
  input[type='radio'] {
    transition: none;
  }
  input[type='radio']:focus-visible {
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) and (hover: hover) {
  input[type='radio']:not(:disabled):hover {
    transform: scale(1);
  }
}

.license-wrapper {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 30px;
  width: 520px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  background: #fff;
  text-align: center;
}

.icon-wrapper {
  background-color: #f9fafb;
  border: 2px dashed #d1d5db;
  border-radius: 50px;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper img {
  width: 50px;
  height: 50px;
}

.license-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
  color: #c89556;
}
button.swal2-confirm.swal2-styled {
    background: #c89556 !important;
    color: #fff !important;
    border: 2px solid #c89556 !important;
}

.license-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.license-table td {
  padding: 12px 8px;
  text-align: left;
  border-bottom: 1px solid #f1f1f1;
  vertical-align: middle;
}

.license-table td:first-child {
  width: 120px;
  font-weight: 500;
  color: #374151;
}

.license-table td:last-child {
  color: #374151;
  font-weight: 600;
  word-break: break-word;
}

.buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  width: 100%;
}

.btn-cancel {
  background-color: transparent;
  color: #6b7280;
}

.btn-connect {
  background-color: #2563eb;
  color: #fff;
}

.btn-connect:hover {
  background-color: #1d4ed8;
}
.container {
	position: relative;
	width: 100%;
	max-width: 1200px;
	background-color: #0a1d3f;
	color: white;
	padding: 30px;
	border-radius: 10px;
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.logo {
	height: 40px;
}

.navigation {
	display: flex;
	gap: 30px;
}

.main-content {
	display: flex;
	margin-bottom: 30px;
}

.left-content {
	flex: 1;
	padding-right: 20px;
}

.right-content {
	flex: 1;
}

.footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.social-icons {
	display: flex;
	gap: 15px;
}

.social-icon {
	width: 24px;
	height: 24px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px;
}

.newsletter {
	display: flex;
	gap: 10px;
	align-items: center;
}

input[type="email"] {
	padding: 10px 15px;
	border-radius: 5px;
	border: none;
	width: 250px;
}

.subscribe-btn {
	background-color: #4263eb;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
}

.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.modal {
	background-color: white;
	width: 100%;
	max-width: 600px;
	border-radius: 10px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.modal-header {
	text-align: center;
	padding: 30px 20px 20px;
}

.modal-header h2 {
	color: #111;
	font-size: 24px;
	margin-top: 20px;
}

.connector-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 20px;
	position: relative;
	width: 140px;
}

.connector-icon {
	width: 40px;
	height: 40px;
	background-color: #f5f7f9;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
}

.connector-line {
	position: absolute;
	height: 2px;
	background-color: #ddd;
	top: 50%;
	left: 17%;
	right: 17%;
	transform: translateY(-50%);
	z-index: 1;
}

.input-group {
	display: flex;
	border: 1px solid #ddd;
	margin: 15px;
	border-radius: 5px;
}

.input-icon {
	display: flex;
	align-items: center;
	padding: 10px 15px;
	border-right: 1px solid #ddd;
}

.input-field {
	flex: 1;
	padding: 12px 15px;
	border: none;
	font-size: 16px;
	outline: none;
}

.modal-footer {
	display: flex;
	justify-content: center;
	padding: 20px;
	gap: 15px;
}

.cancel-btn {
	padding: 12px 30px;
	background-color: white;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
}

.connect-btn {
	padding: 12px 30px;
	background-color: #4263eb;
	color: white;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
}

button.btn.btn-connect {
	display: inline-block;
    font-weight: 400;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #c89556;
    border: 2px solid #c89556;
    padding: .5rem 1rem;
    font-size: 1rem;
    border-radius: 3px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}


button.btn.btn-connect:hover {
	background-color: #b18145;
    border: 2px solid #b18145;
}

.connect-icon {
	transform: rotate(45deg);
}

.terms {
	font-size: 12px;
	color: #666;
	padding: 0 15px 15px;
}

.copyright {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
}
svg {
    width: 1em;
    height: 1em;
    fill: none!important;
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
}
.license-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    padding: 20px 0;
    color: #d89b10;
}