.amxShort24_wrap,
.amxShort24_wrap *{
  box-sizing:border-box;
}

.amxShort24_wrap{
  --amxShort24_green:#5f9c0f;
  --amxShort24_green_hover:#5f9c0f;
  --amxShort24_dark:#050912;
  --amxShort24_panel:#0a0f18;
  --amxShort24_elev:#0b1019;
  --amxShort24_field:#121926;
  --amxShort24_border:#1c2737;
  --amxShort24_text:#ffffff;
  --amxShort24_text2:#96a0b2;
  --amxShort24_text3:#6f7b90;
  --amxShort24_error:#ff6b6b;

  width:100%;
  margin:0;
  padding:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--amxShort24_text);
}

.amxShort24_panel{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:0;
  margin:0;
}

.amxShort24_btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 26px;
  background:var(--amxShort24_green);
  color:#000!important;
  font-weight:600;
  border-radius:10px;
  text-decoration:none!important;
  transition:.3s;
  box-shadow:0 8px 24px rgba(47,116,40,.28);
}

.amxShort24_btn:hover{
  background:var(--amxShort24_green_hover);
  transform:translateY(-2px);
}

.amxShort24_modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.82);
  z-index:99999;
  align-items:center;
  justify-content:center;
  padding:16px;
}

.amxShort24_card{
  background:linear-gradient(180deg,#070c14 0%, #040810 100%);
  border:1px solid #101827;
  border-radius:0;
  padding:20px;
  max-width:500px;
  width:100%;
  max-height:90vh;
  overflow:auto;
  position:relative;
  box-shadow:0 18px 50px rgba(0,0,0,.45);
}

.amxShort24_close{
  position:absolute;
  right:14px;
  top:10px;
  background:none;
  border:none;
  font-size:24px;
  line-height:1;
  cursor:pointer;
  color:#8d97a8;
  padding:0;
}

.amxShort24_close:hover{
  color:#ffffff;
}

.amxShort24_step{
  font-size:14px;
  color:var(--amxShort24_text3);
  margin:0 0 24px 0;
}

.amxShort24_title{
  font-size:18px;
  line-height:1.25;
  color:var(--amxShort24_text);
  margin:0 0 8px 0;
  font-weight:800;
}

.amxShort24_form_grid{
  display:grid;
  gap:18px;
}

.amxShort24_fieldwrap{
  display:grid;
  gap:10px;
}

.amxShort24_name_row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.amxShort24_label{
  font-size:14px;
  color:var(--amxShort24_text);
  font-weight:700;
  margin:0;
}

.amxShort24_label span{
  font-weight:500;
  color:var(--amxShort24_text3);
}

.amxShort24_input{
  width:100%;
  height:42px;
  padding:0 16px;
  background:linear-gradient(90deg,#131b2a 0%, #171e29 100%);
  border:1px solid var(--amxShort24_border);
  border-radius:14px;
  color:#ffffff;
  font-size:14px;
  outline:none;
}

.amxShort24_input::placeholder{
  color:#7f899c;
}

.amxShort24_input:focus{
  border-color:#2d3f58;
}

.amxShort24_uploadbox{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:70px;
  padding:18px 16px;
  background:linear-gradient(90deg,#131b2a 0%, #171e29 100%);
  border:1px solid var(--amxShort24_border);
  border-radius:14px;
  text-align:center;
  cursor:pointer;
  color:#7f899c;
  font-size:14px;
  transition:.25s ease;
}

.amxShort24_uploadbox:hover{
  border-color:#2d3f58;
  color:#aab3c3;
}

.amxShort24_uploadbox input[type="file"]{
  position:absolute;
  inset:0;
  opacity:0;
  cursor:pointer;
  width:100%;
  height:100%;
}

.amxShort24_uploadicon{
  width:18px;
  height:18px;
  flex:0 0 18px;
  color:#8f98aa;
}

.amxShort24_note{
  font-size:12px;
  color:var(--amxShort24_text3);
  margin-top:-4px;
}

.amxShort24_error{
  display:none;
  font-size:12px;
  line-height:1.45;
  color:var(--amxShort24_error);
  margin-top:-2px;
}

.amxShort24_input.amxShort24_invalid{
  border-color:var(--amxShort24_error);
}

.amxShort24_uploadbox.amxShort24_invalid{
  border-color:var(--amxShort24_error);
}

.amxShort24_actions{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin-top:2px;
}

.amxShort24_actions2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:2px;
}

.amxShort24_submit,
.amxShort24_back{
  height:40px;
  border-radius:13px;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  transition:.25s ease;
}

.amxShort24_submit{
  background:var(--amxShort24_green);
  border:none;
  color:#081007;
}

.amxShort24_submit:hover{
  background:var(--amxShort24_green_hover);
}

.amxShort24_back{
  background:transparent;
  border:1px solid var(--amxShort24_border);
  color:#ffffff;
}

.amxShort24_back:hover{
  border-color:#2d3f58;
  background:rgba(255,255,255,.02);
}

@media(max-width:768px){
  .amxShort24_btn{
    width:100%;
  }

  .amxShort24_card{
    max-width:100%;
    padding:20px 14px 16px;
  }

  .amxShort24_actions2{
    grid-template-columns:1fr;
  }
}


@media(max-width:768px){
  .amxShort24_name_row{
    grid-template-columns:1fr;
    gap:18px;
  }
}
