
body {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-box {
    padding: 20px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border: 5px solid transparent;
    border-radius: 10px;
    position: relative;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    0% {
        box-shadow: 0px 0px 10px #ff00ff;
        border-color: #ff00ff;
    }
    50% {
        box-shadow: 0px 0px 20px #00f0ff;
        border-color: #00f0ff;
    }
    100% {
        box-shadow: 0px 0px 30px #ff9900;
        border-color: #ff9900;
    }
}


.dark-input {
    background-color: #222;
    border: 1px solid #444;
    color: #fff;
    border-radius: 5px;
    padding: 10px;
}

.dark-input:focus {
    background-color: #222 !important;
    box-shadow: 0px 0px 8px #00f0ff;
    border-color: #00f0ff;
    color: #fff;
    outline: none;
}

input:focus, select:focus, textarea:focus, button:focus, label:focus,
button:hover, .border-shadow {
    border-radius: 5px;
    box-shadow: 0 0 3px #00f0ff, 0 0 6px #00f0ff, 0 0 12px #00f0ff !important;
}

label {
    color: white;
}

label:focus-visible {
    outline-width: 0;
}

.border-shadow {
    border-radius: 10px;
    box-shadow: 0 0 5px #00f0ff, 0 0 10px #00f0ff, 0 0 20px #00f0ff !important;
}

.dark-form {
    padding: 20px;
}

.custom-file-input {
    display: none; /* Hide default input */
}

.custom-file-label {
    width: 100%;
    background-color: #222;
    color: #fff;
    padding: 5px 15px;
    margin-top: 20px;
    border-radius: 5px;
    border: 1px solid #444;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
}

.custom-file-label:hover {
    background-color: rgb(51, 55, 59);
}


#canvasParent {
    width: 367px;
}

#canvasContainer {
    position: relative;
    width: 100%;
    height: 428px;
}

#canvas {
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
}

#canvasWrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.btn-success {
    width: 100%;
}

.logout-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    /*background-color: #00ffcc;*/
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.logout-button:hover {
    box-shadow: 0 0 5px #00f0ff, 0 0 10px #00f0ff, 0 0 20px #00f0ff !important;
}