﻿.avervo-form {
  background:#fff;
  padding:40px;
  border-radius:8px;
  box-shadow:0 20px 40px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom:22px;
}

.form-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.form-group label {
  display:block;
  font-size:14px;
  margin-bottom:6px;
  color:#333;
}

.avervo-form input,
.avervo-form textarea {
  width:100%;
  padding:14px 14px;
  border:1px solid #ddd;
  border-radius:6px;
  font-size:15px;
  transition:border-color 0.2s, box-shadow 0.2s;
  background:#fafafa;
}

.avervo-form input:focus,
.avervo-form textarea:focus {
  outline:none;
  border-color:#00A8B5;
  box-shadow:0 0 0 3px rgba(0,168,181,0.12);
  background:#fff;
}

.form-check {
  display:flex;
  gap:10px;
  font-size:14px;
  margin:25px 0;
}

.form-check input {
  margin-top:3px;
}

.submitlink.full {
  width:100%;
  text-align:center;
}

.submitlink {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  background:#1A2B3C;
  color:#fff;
  border-radius:6px;
  font-weight:600;
  border:none;
  cursor: pointer;
}


.checkwrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
}

.checkwrap input {
  position: absolute;
  opacity: 0;
}

.checkwrap .checkbox {
  width: 20px;
  height: 20px;
  border: 1px solid #1A2B3C;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.checkwrap input:checked + .checkbox::after {
  content: "✓";
  font-size: 14px;
  line-height: 1;
  color: #fff;
}

.checkwrap input:checked + .checkbox {
  background: #1A2B3C;
}

.hp {
  position:absolute;
  left:-9999px;
}

/* Modernes Select – mobil first */
.avervo-form select {
  width: 100%;
  padding: 14px 40px 14px 14px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  background: #fff;
  font-size: 15px;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #6f6f6f 50%),
    linear-gradient(135deg, #6f6f6f 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.avervo-form select:focus {
  outline: none;
  border-color: #00A8B5;
  box-shadow: 0 0 0 3px rgba(0,168,181,0.12);
}



@media (max-width: 900px) {
  .form-row {
    grid-template-columns:1fr;
  }
}
