body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.main-container {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.logo-container img {
    width: 80px;
    margin-bottom: 20px;
}

.file-preview-container {
    background-color: #e8f0fe;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid #d2e3fc;
}

.file-preview-container p {
    margin: 0 0 15px 0;
    color: #1967d2;
    font-size: 0.9rem;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.logos img {
    width: 32px;
    height: 32px;
    opacity: 0.8;
}

.login-container h1 {
    font-size: 24px;
    color: #202124;
    margin-bottom: 5px;
}

.login-container p {
    font-size: 16px;
    color: #5f6368;
    margin-bottom: 25px;
}

#loginForm {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

input {
    width: 100%;
    padding: 13px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box; /* Important for padding */
}

input:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 1px 6px rgba(26, 115, 232, 0.2);
}

button {
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 13px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #1558b8;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 14px;
}

.footer-links a {
    color: #1a73e8;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.right-links {
    display: flex;
    gap: 15px;
}