*:focus {
  outline: none;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

h1,
h2,
h3,
p,
figure,
ul,
li {
  color: inherit;
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

.rtl {
  direction: rtl;
}

.btn {
  padding: 13px 60px;
  font-size: 32px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  outline: none;
  border: none;
}
.btn:hover {
  color: #fff;
  background-color: #0e74f1;
}
.btn:active {
  color: #fff;
  background-color: #076ae2;
}
.btn.primary {
  background-color: #096eea;
}

[v-cloak] {
  visibility: hidden;
}

body {
  max-width: 1400px;
  font-size: 20px;
  background-color: #000003;
  color: #fff;
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0 auto;
  padding: 80px 0;
}

.panel h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

.buttons {
  text-align: right;
  margin-top: 70px;
}

.options {
  background-color: rgba(251, 248, 255, 0.1);
  border: 1px solid transparent;
  border-radius: 10px;
  background-image: linear-gradient(#19191C, #19191C), linear-gradient(to bottom, #e0c7ff 0%, #985fd5 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
}
.options .wrap {
  padding: 10px 0;
}

form .row {
  margin-bottom: 40px;
}
form .row:last-child {
  margin-bottom: 0;
}
form .row-flex {
  display: flex;
  align-items: center;
  gap: 90px;
}
form .row-flex > * {
  flex: 1;
}
form label {
  display: block;
  margin-bottom: 10px;
}

.radio {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  padding: 20px 36px;
  border-bottom: 1px solid rgba(217, 217, 217, 0.1);
}
.radio:hover {
  background-color: rgba(217, 217, 217, 0.05);
}
.radio::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: rgba(217, 217, 217, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}
.radio:has(input:checked)::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  margin-left: 6px;
  background-color: #096eea;
  border-radius: 50%;
}
.radio input {
  width: 32px;
  height: 32px;
  visibility: hidden;
}

.ipt {
  width: 100%;
  box-sizing: border-box;
  border: none;
  padding: 20px 25px;
  font-size: 20px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.ipt.file {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.ipt.file input[type=file] {
  position: absolute;
  visibility: hidden;
}
.ipt.file .btn {
  display: inline-block;
  font-size: 20px;
  margin-bottom: 0;
}
.ipt.file .file-list:empty::before {
  content: attr(data-empty, "No files selected");
  color: rgba(255, 255, 255, 0.5);
}
.ipt.file .file-list span {
  margin-right: 0.5em;
}
.ipt.file .file-list span::after {
  content: ", ";
}
.ipt.file .file-list span:last-child {
  margin-right: 0;
}
.ipt.file .file-list span:last-child::after {
  content: none;
}