/**
 * Copyright 2024 autumo GmbH, Michael Gasche.
 * All Rights Reserved.
 * 
 * NOTICE: All information contained herein is, and remains
 * the property of autumo GmbH The intellectual and technical
 * concepts contained herein are proprietary to autumo GmbH
 * and are protected by trade secret or copyright law.
 * 
 * Dissemination of this information or reproduction of this material
 * is strictly forbidden unless prior written permission is obtained
 * from autumo GmbH.
 * 
 */


body {
    background-color: #111111;
    color: #dddddd;
    background-image: url('/img/background.jpg'); /* Replace 'your-image.jpg' with the path to your image */
    background-size: cover; /* Ensures the image covers the entire background */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-attachment: fixed; /* Keeps the background fixed while scrolling */
    background-position: center; /* Centers the image */
    margin: 0; /* Removes default margin */
    padding: 32px 32px 32px 32px;
}
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    pointer-events: none; /* Allows interaction with elements beneath */
    z-index: -1; /* Ensures it stays behind the content */
}

h1 {
    color: #A2EEFF;
}

h2 {
    color: #A2EEFF;
}

h3 {
    color: #A2EEFF;
    margin-bottom: 0.6rem;
}

.top-nav-title a,
.top-nav-links a {
    text-decoration: none;
    color: #0e4e74;
}
.top-nav-title a:hover,
.top-nav-links a:hover {
    text-decoration: none;
    color: #07b;
}

header {
	margin-top: 24px;
} 

legend {
	color: #51d88a;
	font-size: 32px;
	font-weight: 400;
	margin-bottom: 24px;
}

label {
    font-weight: 400;
    color: #6cb2eb;
}

fieldset {
	padding-bottom: 8px;
}

ul {
    padding-left: 2px;
}

li {
    margin-bottom: 0.2rem;
	font-weight: 200;
	font-size: 18px;
}

p {
	font-size: 18px;	
}

a {
    color: #008ad9;
    text-decoration: none;
}
a:hover {
    color: #A2EEFF;
}

.copy {
    font-family: 'Aileron-Thin', sans-serif;
    color: #888888;
	margin-bottom: 0px;
}

.contact {
	margin-bottom: 8px;
}

.content {
	background: radial-gradient(circle, #303030 25%, transparent 25%) 0 0,
                radial-gradient(circle, #303030 25%, transparent 25%) 3px 3px;
    background-size: 6px 6px;
	/**
	background: repeating-linear-gradient(45deg, #333333 0px, #333333 5px, #282828 5px, #282828 10px);
	*/
	/**
	background: repeating-linear-gradient(45deg, #333333 0px, #282828 1px, transparent 1px, transparent 2px),
                repeating-linear-gradient(-45deg, #333333 0px, #282828 1px, transparent 1px, transparent 2px);
	*/
    background-color: #333333;
    color: #dddddd;
    border-radius: 8px;
    padding: 32px 32px 12px 32px;
    margin: 0 auto;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

.subtitle {
	margin-top: 20px;
	margin-bottom: -12px;
	font-size: 36px;
	font-weight: 200;
	line-height: 1.3;
}

.note {
	color: #aaaaaa;
	margin-top: 24px;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
}
.note-space {
	font-size: 4px;
}

.button, button, input[type='button'], input[type='reset'], input[type='submit'] {
    background-color: #0E4E73;
    border-color: #0E4E73;
    text-transform: none;
	font-size: 18px;
	font-weight: 400;
	line-height: 0;
    border-radius: .6rem;
	padding: 2.4rem 3.0rem 2.4rem 3.0rem;
}

input[type='color'],
input[type='date'],
input[type='datetime'],
input[type='datetime-local'],
input[type='email'],
input[type='month'],
input[type='number'],
input[type='password'],
input[type='search'],
input[type='tel'],
input[type='text'],
input[type='url'],
input[type='week'],
input:not([type]),
textarea,
select {
    -webkit-appearance: none;
    color: #cccccc;
    background-color: #222222;
    border: 0.1rem solid #202020;
    border-radius: .6rem;
    box-shadow: none;
    box-sizing: inherit;
    height: 3.8rem;
    padding: .6rem 1.0rem .7rem;
    width: 100%;
}

/* Autofill Styling */
input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
input:-internal-autofill-selected {
    background-color: #222222 !important;
    -webkit-box-shadow: 0 0 0px 1000px #222222 inset !important;
    box-shadow: 0 0 0px 1000px #222222 inset !important;
    -webkit-text-fill-color: #dddddd !important;
    color: #dddddd !important; /* Fallback */
    transition: background-color 9999s ease-in-out 0s, -webkit-text-fill-color 0s !important;
    -webkit-appearance: none !important;
    caret-color: #dddddd !important;
}

/* Autofill focus */
input:-webkit-autofill:focus {
    background-color: #222222 !important;
    -webkit-box-shadow: 0 0 0px 1000px #222222 inset !important;
    box-shadow: 0 0 0px 1000px #222222 inset !important;
    -webkit-text-fill-color: #dddddd !important;
    color: #dddddd !important; /* Fallback */
    caret-color: #dddddd !important;
}


.message {
    padding: .5rem 1rem;
    background: #222222;
    color: #ffffff;
    border-color: #333333;
    border-width: 1px;
    border-style: solid;
    border-radius: 4px;
    margin-bottom: 1rem;
    cursor: pointer;
}
.message.error {
    background: #222222;
    color: #ef5753;
    border-color: #333333;
}
.message.warning {
    background: #222222;
    color: #FFFABD;
    border-color: #333333;
}