body {
    font-family: Verdana, Arial, sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 320px;
    text-align: center;
}

.logo {
    width: 100px;
    margin-bottom: 20px;
}

form input[type="text"],
form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0 16px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    height: 40px;
}



form input[type="submit"] {
    width: 100%;
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background-color: #0056b3;
}

form label {
    display: block;
    text-align: left;
}

p {
    margin-bottom: 10px;
}

.browse-container {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: center;
}

.file-list {
    list-style-type: none;
    padding: 0;
    margin: 10px 0 20px 0;
    text-align: left;
}

.file-list li {
    margin: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.file-list a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

.file-size {
    font-size: 0.9em;
    color: #666;
}
