/* THATTRANS.de by mewo [sukuna.de] */

/* ================== */
/* Meta Einstellungen */
/* ================== */

::selection {
  background: #ff4e00;
  color: white;
}

@font-face {
  font-family: "THATTRANS";
  src: url('/fonts/THATTRANS.woff2') format('woff2'),
       url('/fonts/THATTRANS.woff') format('woff'),
       url('/fonts/THATTRANS.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

.index-tt-text {
	font-family: "THATTRANS", sans-serif;
	font-style: italic;
}

.index-tt-text-color {
	color: #ff4e00;
}

.index-tt-text-black {
	color: #151515;
}

.index-tt-text-cont {
	-webkit-text-stroke: 0.5px white;
}

.logo {
    width: 100px;
    content: url(https://upload.sukuna.de/NOJU6/bAQoRELu77/raw.png);
}

.logo:hover {
    animation: rainbowShadow 8s linear infinite;
}

@keyframes rainbowShadow {
    0% { filter: drop-shadow(0 0 0.75rem crimson); }
    14% { filter: drop-shadow(0 0 0.75rem orange); }
    28% { filter: drop-shadow(0 0 0.75rem yellow); }
    42% { filter: drop-shadow(0 0 0.75rem green); }
    57% { filter: drop-shadow(0 0 0.75rem blue); }
    71% { filter: drop-shadow(0 0 0.75rem indigo); }
    85% { filter: drop-shadow(0 0 0.75rem violet); }
    100% { filter: drop-shadow(0 0 0.75rem crimson); }
}

/* ============= */
/* Seiten Layout */
/* ============= */

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(backgroud.jpg);
    background-size: cover;
    background-position: center;
	background-repeat: no-repeat;
  	background-attachment: fixed;
}

.container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.links {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.links li {
    display: block;
    margin-bottom: 20px;
}

.links li a {
    border: 2px solid #ff4e00; 
    background-color: #151515;
	color: white;
	padding: 10px 20px;
	text-align: center;
	text-decoration: none;
	display: block;
	font-size: 15px;
	/*margin: 4px 2px;*/
	cursor: pointer;
	border-radius: 5px;
	font-family: 'Roboto', sans-serif; 
	transition: background-color 0.3s, border 0.3s; 
}

.links li a:hover {
	background-color: #ff4e00;
	border: 2px dotted #151515; 
}


/* ====================== */
/* Login Fenster und Form */
/* ====================== */

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(21, 21, 21, 0.7); /* Hintergrundfarbe #151515 und leicht transparent */
    color: #fefefe;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #151515;
    max-width: 250px;
    margin: 0 auto;

}

input[type="submit"],
input[type="button"],
button[type="submit"],
.intralink {
    border: 2px solid #ff4e00; 
    background-color: #151515;
	color: white;
	padding: 5px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 15px;
	margin: 4px 2px;
	cursor: pointer;
	border-radius: 5px;
	font-family: 'Roboto', sans-serif; 
	transition: background-color 0.3s, border 0.3s; 
}

input[type="submit"]:hover,
button[type="submit"]:hover,
.intralink:hover {
	background-color: #ff4e00;
	border: 2px dotted #151515; 
}

input[type="button"]:disabled,
input[type="submit"]:disabled {
  color: red;
  border: 2px dotted red; 
  cursor: not-allowed;
  transition: color 0.3s, background-color 0.3s; 
}

input[type="button"]:disabled:hover,
input[type="submit"]:disabled:hover {
  color: white;
  background-color: darkred;
  border: 2px dotted red; 
  cursor: not-allowed;
}

input[type="text"],
input[type="password"] {
  border: 2px solid #ff4e00; 
  background-color: #151515; 
  color: grey; 
  font-family: 'Roboto', sans-serif; 
  padding: 10px; 
  transition: background-color 0.3s, border 0.3s, color 0.3s; 
}

input[type="text"]:focus,
input[type="password"]:focus {
  background-color: black; 
  color: white; 
  outline: none;
  border: 2px dotted #ff4e00; 
}


/* ================ */
/* Background Video */
/* ================ */

#ttVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}