﻿/**
 * Radio-LiSa Web Portal
 *
 * @project     Radio-LiSa
 * @author      datOnkel (SW-Development)
 * @website     https://sw-development.de
 * @copyright   (c) 2026 SW-Development. Alle Rechte vorbehalten.
 *
 * Dieses Projekt wurde von datOnkel erstellt,
 * auch bekannt unter SW-Development (https://sw-development.de).
 */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.discord-btn{
    display:block;
    margin-top:20px;
    background:#5865F2;
    padding:15px;
    border-radius:12px;
    color:white;
    text-decoration:none;
}

body{

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    background:
    linear-gradient(
        rgba(0,0,0,.7),
        rgba(0,0,0,.8)
    ),
    url("../img/banner.png");

    background-size:cover;

    font-family:Segoe UI,sans-serif;

    color:white;
}

.auth-box{

    width:420px;

    background:#081120;

    border:1px solid #17345f;

    border-radius:25px;

    padding:40px;

    box-shadow:0 0 40px rgba(0,200,255,.2);

    text-align:center;
}

.logo{

    width:120px;

    margin-bottom:20px;
}

h1{

    margin-bottom:30px;

    color:#0087ff;
}

input{

    width:100%;

    height:55px;

    margin-bottom:15px;

    background:#0c1d36;

    border:1px solid #17345f;

    border-radius:12px;

    padding:0 15px;

    color:white;

    font-size:16px;
}

button{

    width:100%;

    height:55px;

    border:none;

    border-radius:12px;

    background:
    linear-gradient(
        90deg,
        #009dff,
        #005dff
    );

    color:white;

    font-size:16px;

    font-weight:bold;

    cursor:pointer;

    margin-top:10px;
}

a{

    display:block;

    margin-top:20px;

    color:#0087ff;

    text-decoration:none;
}

.error{

    background:#441616;

    border:1px solid #ff4c4c;

    padding:15px;

    border-radius:10px;

    margin-bottom:20px;
}

.success{

    background:#10331b;

    border:1px solid #2cff78;

    padding:15px;

    border-radius:10px;

    margin-bottom:20px;
}