/* New style for the "CorpSync" demo */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f0f2f5; /* Light grey/blue background */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container, .dashboard-container {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.logo-placeholder {
    width: 60px;
    height: 60px;
    background-color: #0052cc; /* Corporate Blue */
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.input-group {
    text-align: left;
    margin-bottom: 1rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #555;
}

.input-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; 
}

.login-button {
    width: 100%;
    padding: 0.85rem;
    border: none;
    border-radius: 4px;
    background-color: #0052cc; /* Corporate Blue */
    color: #ffffff; 
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.login-button:hover {
    background-color: #0041a3; /* Darker blue on hover */
}

.links {
    margin-top: 1.5rem;
}

.links a {
    color: #0052cc;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Styles for the dashboard page */
.dashboard-container {
    text-align: left;
}

.capture-box {
    background-color: #fffbe6; /* Light yellow warning box */
    border: 1px solid #ffe58f;
    border-radius: 4px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.capture-box h3 {
    margin-top: 0;
    color: #d46b08; /* Dark yellow/orange */
}

.capture-box pre {
    background-color: #fAfAfA;
    padding: 0.5rem;
    border: 1px dashed #ccc;
    white-space: pre-wrap;
    word-break: break-all;
}