body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0E0E30;
    color: #ddd;
    text-align: center;
    padding: 20px;
}
img.logo-main {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin-bottom: 20px;
}
form {
    background-color: #ffffff12;
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
h2, h3 {
    color: #fff;
    margin: 20px 0;
    text-transform: uppercase;
}
.extensions-text {
    background-color: transparent;
    color: #ddd;
    padding: 0;
    font-size: 0.9em;
    margin: 10px 0;
    display: block;
}
input[type=file],
input[type=password],
input[type=submit] {
    padding: 15px;
    margin: 10px auto;
    border: 2px solid #CCC;
    border-radius: 5px;
    display: block;
    width: calc(100% - 30px);
    outline: none;
    font-size: 1em;
    box-sizing: border-box;
}
input[type=password] {
    display: none;
    border-color: #1094F0;
    background-color: #ffffff30;
    color: #fff;
}
input[type=submit] {
    background-color: #1094F0;
    color: white;
    cursor: pointer;
    font-weight: bold;
    border: none;
}
input[type=submit]:hover {
    background-color: #0B7DD3;
}
input[type=file]::-webkit-file-upload-button {
    visibility: hidden;
}
input[type=file]::before {
    content: 'Select a file';
    display: inline-block;
    background: #D41C91;
    color: white;
    padding: 8px 20px;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    text-align: center;
    border: none;
    border-radius: 5px;
}
input[type=file]:hover::before {
    background: #DD2399;
}
a {
    color: #1094F0;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.log-password, .log-upload-limit {
    background-color: #df2a2abf;
}
.log-success {
    background-color: #528d4b;
}
.log-info {
    color: #ddd;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
    position: relative;
    display: block;
}
.log-info .close {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}
.file-path {
    background-color: white;
    color: black;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
}
/* Style to hide password label initially */
#passwordLabel {
    display: none;
}
footer {
    color: #aaa;
    width: 100%;
    padding: 10px 20px;
    position: fixed;
    bottom: 0;
    background-color: #0E0E30;
    text-align: center;
    z-index: 1000;
}
@media only screen and (max-width: 600px) {
    footer {
        padding: 10px;
        text-align: center;
    }
}
.version-number {
    font-size: 12px;
    color: #ccc;
    display: inline-block;
    vertical-align: super;
    margin-left: 5px;
}