/* synthwave.css */

body {
    background: linear-gradient(135deg, #1e1e2f, #2a1e5c);
    font-family: 'Courier New', monospace;
    color: #ff77ff;
    margin: 0;
    padding: 20px;
}

h2 {
    color: #ff6aff;
    text-shadow: 1px 1px 4px #ff00ff;
}

.column {
    width: 30%;
    padding: 10px;
    border-radius: 8px;
    background: rgba(50, 0, 80, 0.8);
    box-shadow: 0 0 15px #ff00ff;
    min-height: 300px;
}

.card {
    background: rgba(255, 0, 255, 0.2);
    margin: 8px 0;
    padding: 10px;
    border-radius: 6px;
    cursor: grab;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 0 10px #ff00ff;
}

.card:hover {
    transform: translateY(-3px);
    background: rgba(255, 0, 255, 0.4);
    box-shadow: 0 0 20px #ff00ff;
}

button {
    background: #ff00ff;
    border: none;
    border-radius: 4px;
    color: #1e1e2f;
    padding: 5px 10px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
    margin-top: 10px;
    margin-bottom: 10px;
}

button:hover {
    background: #ff77ff;
    color: #1e1e2f;
}

.task-title, .task-desc, .note-title, .note-content {
    color: #ff77ff;
    text-shadow: 0 0 3px #ff00ff;
    cursor: pointer;
}

.task-desc {
    font-size: 0.9em;
    color: #ff99ff;
}

a {
    color: #ff6aff;
    text-decoration: none;
}

a:hover {
    color: #ff77ff;
}

input, textarea {
    background: rgba(255,255,255,0.1);
    border: 1px solid #ff77ff;
    color: #fff;
    border-radius: 4px;
    padding: 2px 5px;
}

/* Logout-painike */
.logout-btn {
    background-color: #ff00ff;
    color: #fff;
    border: 2px solid #ff00ff;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.logout-btn:hover {
    background-color: #ff00ff;
    color: #000;
    box-shadow: 0 0 10px #ff00ff;
}

#header {
    background-color: #1a0b3b !important;
    color: #ff00ff !important;
    box-shadow: 0 0 20px #ff00ff inset;
}

#header h1, #header h1 a {
    color: #00ffff !important;
    text-shadow: 0 0 5px #ff00ff, 0 0 10px #00ffff;
}
#login-form input[type="submit"] {
    background-color: #ff00ff !important;
    color: #000 !important;
    border: 2px solid #ff00ff !important;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 10px #ff00ff;
    transition: 0.3s;
}

#login-form input[type="submit"]:hover {
    box-shadow: 0 0 20px #ff00ff, 0 0 10px #00ffff;
}

#login h1 {
    color: #00ffff !important;
    text-shadow: 0 0 5px #ff00ff, 0 0 10px #00ffff;
}

#login-form input[type="text"],
#login-form input[type="password"] {
    background-color: #1a0b3b !important;  /* tumma tausta */
    color: #00ffff !important;             /* teksti neon-cyan */
    border: 2px solid #ff00ff !important;  /* neonreunat */
    padding: 6px !important;
    border-radius: 5px !important;
    box-shadow: 0 0 5px #ff00ff inset !important;
}
#login-form input:focus {
    outline: none !important;
    box-shadow: 0 0 10px #ff00ff, 0 0 5px #00ffff inset !important;
}



input[type="submit"].default {
    background-color: #ff00ff !important;
    color: #000 !important;
    border: 2px solid #ff00ff !important;
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 10px #ff00ff;
    transition: 0.3s;
}

input[type="submit"].default:hover {
    box-shadow: 0 0 20px #ff00ff, 0 0 10px #00ffff;
}
