/* Landing Page Styles */

.landing-body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.landing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 20px;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-logo {
    max-width: 300px;
    max-height: 200px;
    width: auto;
    height: auto;
}

.company-name {
    color: #000000;
    font-size: 3rem;
    font-weight: 300;
    margin: 0;
    text-align: center;
}

.login-button {
    display: inline-block;
    padding: 6px 16px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
}

.login-button:hover {
    background-color: #555555;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .company-logo {
        max-width: 200px;
        max-height: 150px;
    }

    .company-name {
        font-size: 2rem;
    }

    .login-button {
        padding: 5px 12px;
    }

    .landing-container {
        gap: 40px;
    }
}
