@font-face {
    font-family: 'FontAwesomeSolid';
    src: url('../IconFonts/fa-solid-900.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Outfit', sans-serif;
    background: url('../Images/Wallpaper/DarkTiles.jpg') no-repeat center center fixed;
    background-size: cover;
    height: auto;
    overflow: visible;
}

/* Container für die Loginbox */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    box-sizing: border-box;
}

/* Loginbox */
.cxs-loginbox {
    width: 340px;
    margin: 0;
    box-sizing: border-box;
    background: var(--cxs-frosted-gradient-small);
    padding: 10px 20px 6px 20px;
    box-shadow: var(--cxs-shadow);
    border-radius: 3px;
}


/* Loginelemente */
.form-input,
.form-submit {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    letter-spacing: 4px;
    font-size: 11px;
}

.form-input {
    padding-left: 35px;
    border: none;
    margin-bottom: 3px;
    color: var(--cxs-gray-dark);
    background-color: var(--cxs-white);
}

.form-input::placeholder {
    color: var(--cxs-gray-light);
    opacity: 1;
}

/* Autofill-Schutz */
.form-input:-webkit-autofill {
    -webkit-text-fill-color: var(--cxs-gray-dark) !important;
    background-color: var(--cxs-white) !important;
    box-shadow: 0 0 0 1000px var(--cxs-white) inset !important;
}

.form-submit {
    background-color: var(--cxs-accent-color);
    color: var(--cxs-white);
    border: none;
    margin-bottom: 12px;
    text-transform: uppercase;
    transition: background-color 0.1s ease-in-out;
}

.form-submit:hover {
    background-color: var(--cxs-accent-hover);
}

/* Eingabefeld mit Icon */
.input-icon-wrapper {
    position: relative;
    width: 100%;
}

/* Icon-Styling */
.icon {
    font-family: 'FontAwesomeSolid';
    font-weight: 900;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    background: var(--cxs-gradient-icon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.icon-user::before {
    content: '\f007';
}

.icon-lock::before {
    content: '\f023';
}

/* Logo Container */
.logo-container {
    width: 100%;
    max-width: 500px;
    margin-bottom: 12px;
    text-align: center;
}

.responsive-logo {
    width: 100%;
    height: auto;
    display: block;
}

/* Navigation Styles */
.legal_nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.legal_nav a {
    text-decoration: none;
    color: #333;
    font-size: 8px;
    text-transform: uppercase;
    transition: color 0.1s ease-in-out;
}

.legal_nav a:hover {
    color: var(--cxs-link-hover);
}

/* Fieldset Reset */
.frame-type-felogin_login fieldset {
    all: unset;
    display: block;
}

/* Subpage Main Box */
.simplesubpagemainbox {
    background: var(--cxs-frosted-gradient-large);
    padding: 30px;
    margin: 60px auto 140px;
    max-width: 800px;
    box-shadow: var(--cxs-shadow);
    border-radius: 3px;
}