@charset "UTF-8";
@import "font-awesome.min.css";
@import "font.css";

:root{
  --border: #cecece;
  --color_darkgrey: #3d3d3d;   
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
	color: var(--color_darkgrey);
}

body {
	height: 100%;
	width: 100%;
	font-family: Calibri,sans-serif;
	font-size: 16px;
	overflow: hidden;
    background: url("../img/bg-image.jpg") no-repeat center center fixed;
    -webkit-background-size: cover; /* For WebKit*/
    -moz-background-size: cover;    /* Mozilla*/
    -o-background-size: cover;      /* Opera*/
    background-size: cover;         /* Generic*/
}

body > div {
  position:absolute;
  left:0;
  right:0;
  top:0;
  bottom:0;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

body > div > .main-form {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 28px 24px 16px 24px;
  display:flex;
  flex-direction: column;
  max-width: 100%;
  width: 600px;
}

.g_form {
    z-index: 1000;
}

.form-item {
  margin: 0 0 12px 0;
  position:relative;
}

.form-item input[type="text"], .form-item input[type="password"] {
    border: 1px solid var(--border);
    height: 60px;
    color: #a0a0a0;
    background: #fff;
    padding: 0 0 0 57px;
    margin: 0;
    width: 100%;
    max-width:100%;
    font-size: 22px;
}

.form-item input[type="submit"] {
  height: 60px;
    width: 100%;
    font-size: 22px;
    border: 0;
    background: var(--color_darkgrey);
    color: #fff;
    text-transform: uppercase;
    margin-top: 12px;
    cursor: pointer;
    text-align: center;
    padding: 0;
}

.form-item input[type="submit"]:hover {
    background-color:#808080;
    -moz-transition: all 0.5s ease-in;
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
}


.form-item label {
  display: none;
}

.form-item i {
    color: #a0a0a0;
    position: absolute;
    left: 25px;
    top: 20px;
    font-size: 22px;
}

#input-error {
  font-size: 14px;
  color: #d72134;
}

@media only screen and (max-width: 600px) {
	body > div > .main-form {
	  padding: 18px 14px 11px 14px;
	}
	.form-item {
	  margin: 0 0 7px 0;
	}

	.form-item input[type="submit"] {
		margin-top: 7px;
	}
}

/* tecis tIS Auswahl
*/

.form-item .choice-label { display:grid; }

.choice-list{
  list-style:none;
  margin:8px 0 0;
  padding:0;
  display:grid;
  gap:10px;
}

.choice-item{ position:relative; }

/* Native Radio verstecken, aber klickbar halten */
.choice-input{
  position:absolute;
  opacity:0;
  inset:0;
}

/* Klickfläche */
.choice-label{
  gap:4px;
  align-items:center;
  padding:12px 14px 12px 44px;  /* Platz für Fake-Radio */
  border:1px solid var(--border);
  border-radius:8px;
  background:#fff;
  cursor:pointer;
  transition:border-color .15s ease, box-shadow .15s ease;
  width:100%;
}

/* Fake-Radiobutton links */
.choice-label::before{
  content:"";
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  width:18px; height:18px;
  border-radius:50%;
  border:2px solid var(--border);
  background:#fff;
  box-sizing:border-box;
}

.choice-label:hover{ border-color:var(--border); }
.choice-input:focus + .choice-label{ box-shadow:0 0 0 3px rgba(61,61,61,.15); }
.choice-input:checked + .choice-label{
  border-color:var(--color_darkgrey);
  box-shadow:0 0 0 3px rgba(0,0,0,.05);
}
.choice-input:checked + .choice-label::before{
  border-color:var(--color_darkgrey);
  box-shadow:inset 0 0 0 5px var(--color_darkgrey);
}

.choice-title{ font-weight:600; line-height:1.2; }
.choice-meta{ color:#666; font-size:.95rem; display:flex; gap:6px; flex-wrap:wrap; }