/* public/css/styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.header {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
    background-color: #333;
}


.auth-button {
    color: white;
    background-color: transparent;
    border: none;
    padding: 0;
    margin-left: 20px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
}

.auth-button:hover {
    text-decoration: underline;
}

.upload-container {
    margin: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

input[type="file"] {
    margin-bottom: 20px;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #0056b3;
}

#uploadStatus {
    margin-top: 20px;
    font-size: 14px;
    color: #333;
}

#fileList {
    margin-bottom: 20px;
    font-size: 14px;
    color: #333;
}

/* Login Page Styles */
.auth-container, #confirmPasswordContainer {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.auth-container h2, #confirmPasswordContainer h2 {
    margin-bottom: 20px;
}

.auth-container input[type="email"],
.auth-container input[type="password"],
#confirmPasswordContainer input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.auth-container button,
#confirmPasswordContainer button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 10px;
}

.auth-container button:hover,
#confirmPasswordContainer button:hover {
    background-color: #0056b3;
}

#authStatus {
    margin-top: 20px;
    font-size: 14px;
    color: #ff0000;
}