body {
    font-family: Arial, sans-serif;
    margin: 0;
    display: flex;
    height: 100vh;
}

.left {
    flex: 1;
    /* background: url('path/to/your/image.jpg') no-repeat center center;
    background-size: cover; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.left img {
    max-width: 70%;
}

.right {
    flex: 1;
    background-color: #005581;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
    color: #333;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    margin: 10px 0;
    font-size: 28px;
    color: #005581;
}

header a {
    color: #a9a9a9; /* Darker grey color */
    text-decoration: underline;
    font-size: 12px;
    cursor: pointer;
    display: block;
    margin: 10px 0;
}

header a:hover {
    text-decoration: none;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    text-align: left;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="password"] {
    margin-bottom: 10px;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

#drop-area {
    border: 2px dashed #ccc;
    border-radius: 5px;
    padding: 50px;
    text-align: center;
    margin-bottom: 10px;
    background-color: #f9f9f9;
}

#drop-area.drag-over {
    border-color: #4CAF50;
    background-color: #e0e0e0;
}

#drop-area p {
    margin: 0;
    font-size: 16px;
    color: #666;
}

#fileSelectText {
    color: #005581;
    text-decoration: underline;
    cursor: pointer;
}

#fileList {
    list-style: none;
    padding: 0;
}

#fileList li {
    padding: 5px 0;
}

#progress-bar {
    width: 100%;
    background-color: #f3f3f3;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 10px;
    display: none;
}

#progress-bar div {
    height: 20px;
    background-color: #4CAF50;
    width: 0%;
    border-radius: 5px;
    text-align: center;
    color: white;
}

button {
    background-color: #005581;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px 0;
}

button:hover {
    background-color: #003366;
}

footer {
    font-size: 12px;
    color: #666;
}
