@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');

:root {
    --pci-blue: #1e90ff;
    --neon-cyan: #00eaff;
    --neon-purple: #7b2cff;
    --gradient-neon: linear-gradient(135deg, #7b2cff, #1e90ff);
    --gradient-tech: linear-gradient(135deg, #1e90ff, #00eaff);
}

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: radial-gradient(circle at top, #0f1115, #1c1f26);
    /*color: white;
    height: 100vh;
    display: flex;
    justify-content: center; 
    align-items: center;*/
}

.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, #1e90ff22 1px, transparent 1px),
        linear-gradient(to bottom, #1e90ff22 1px, transparent 1px);
    animation: gridMove 20s linear infinite;
    z-index: -2;
}

@keyframes gridMove {
    from { background-position: 0 0; }
    to { background-position: 200px 200px; }
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

header {
    background: #ffffffcc;
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e3e6ea;
}
.footer {
    
    text-align: center;
    font-size: 0.75rem;
    padding: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: aliceblue;
}


.logo-img {
    height: 60px;
}

nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}


.Main {
    display: fixed;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    justify-content: center;
    align-items: center;
    background: var(--gradient-neon);
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 234, 255, 0.4);
    text-align: center;
}


.Kontakt {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    transform: translate(-50%, -50%);
    justify-content: center;
    align-items: center;
    background: var(--gradient-neon);
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 234, 255, 0.4);
    text-align: center;
    transition: transform 1s ease-in-out;  
}
        form {
            display: flex;
            flex-direction: column;
            
            
        }

        label {
            /*font-size: 14px;*/
            color: aliceblue;
            margin-bottom: 10px;
            font-size: .8em;
        }     
  
        
        input[type="text"],
        input[type="email"],
        input[type="password"] {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            border: 1px solid #ccc;
            border-radius: 12px;
            box-sizing: border-box;
            /*font-size: 16px;*/
        }

.success-box {
    background: #0f0;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    color: #000;
}

.error-box {
    background: #f00;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    color: #fff;
}




/* Button */
button {
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: var(--gradient-tech);
    color: #0f1115;
    font-weight: 700;
    font-size: .8em;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--neon-cyan), 0 0 50px var(--neon-purple);
}
