body,form,figure{margin:0;padding:0}img{border:0}header,footer,nav,section,aside,article,figure,figcaption{display:block}body{font-size:100.01%}select,input,textarea{font-size:99%}#container,.inside{position:relative}#main,#left,#right{float:left;position:relative}#main{width:100%}#left{margin-left:-100%}#right{margin-right:-100%}#footer{clear:both}#main .inside{min-height:1px}.ce_gallery>ul,.content-gallery>ul{margin:0;padding:0;overflow:hidden;list-style:none}.ce_gallery>ul li,.content-gallery>ul li{float:left}.ce_gallery>ul li.col_first,.content-gallery>ul li.col_first{clear:left}.float_left,.media--left>figure{float:left}.float_right,.media--right>figure{float:right}.block{overflow:hidden}.media{display:flow-root}.clear,#clear{height:.1px;font-size:.1px;line-height:.1px;clear:both}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.custom{display:block}#container:after,.custom:after{content:"";display:table;clear:both}
@media (max-width:767px){#wrapper{margin:0;width:auto}#container{padding-left:0;padding-right:0}#main,#left,#right{float:none;width:auto}#left{right:0;margin-left:0}#right{margin-right:0}}img{max-width:100%;height:auto}.audio_container audio{max-width:100%}.video_container video{max-width:100%;height:auto}.aspect,.responsive{position:relative;height:0}.aspect iframe,.responsive iframe{position:absolute;top:0;left:0;width:100%;height:100%}.aspect--16\:9,.responsive.ratio-169{padding-bottom:56.25%}.aspect--16\:10,.responsive.ratio-1610{padding-bottom:62.5%}.aspect--21\:9,.responsive.ratio-219{padding-bottom:42.8571%}.aspect--4\:3,.responsive.ratio-43{padding-bottom:75%}.aspect--3\:2,.responsive.ratio-32{padding-bottom:66.6666%}
/* * RISE COCKPIT - LOGIN GATE THEME 
 * Author: Pacman Coder
 * Context: Dark Mode / Cyberpunk Aesthetic
 */

/* Container Zentrierung für die Login Seite */
.mod_login {
    max-width: 400px;
    margin: 10vh auto;
    padding: 2rem;
    background: rgba(10, 10, 15, 0.95);
    border: 1px solid #33ff00; /* RISE Green */
    box-shadow: 0 0 20px rgba(51, 255, 0, 0.2);
    font-family: 'Courier New', Courier, monospace;
    color: #e0e0e0;
    border-radius: 4px;
}

/* Überschriften */
.mod_login h2, 
.mod_login h1 {
    color: #33ff00;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 5px rgba(51, 255, 0, 0.5);
}

/* Form Fields */
.mod_login .widget {
    margin-bottom: 1.5rem;
}

.mod_login label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #888;
}

.mod_login input.text,
.mod_login input.password {
    width: 100%;
    padding: 10px;
    background: #000;
    border: 1px solid #333;
    color: #33ff00;
    font-family: inherit;
    transition: all 0.3s ease;
}

.mod_login input.text:focus,
.mod_login input.password:focus {
    border-color: #33ff00;
    outline: none;
    box-shadow: 0 0 10px rgba(51, 255, 0, 0.3);
}

/* Submit Button */
.mod_login button.submit {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid #33ff00;
    color: #33ff00;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 1px;
}

.mod_login button.submit:hover {
    background: #33ff00;
    color: #000;
    box-shadow: 0 0 15px rgba(51, 255, 0, 0.6);
}

/* Checkbox (Auto Login) */
.mod_login .checkbox_container {
    font-size: 0.8rem;
    color: #666;
    margin-top: 10px;
}

/* Error Messages */
.mod_login .error {
    color: #ff3333;
    border: 1px solid #ff3333;
    background: rgba(255, 51, 51, 0.1);
    padding: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-align: center;
}

/* Background Effect (Optional for Login Page Body) */
body.login-page {
    background-color: #050505;
    background-image: 
        linear-gradient(rgba(51, 255, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(51, 255, 0, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

