﻿/* Estilos específicos da página de login */
.login-container {
    width: 100%;
    max-width: 420px;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 15px 30px var(--shadow-color);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

    .login-container::before {
        content: "";
        position: absolute;
        top: -50px;
        right: -50px;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background-color: var(--primary-color);
        opacity: 0.1;
    }

    .login-container::after {
        content: "";
        position: absolute;
        bottom: -50px;
        left: -50px;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background-color: var(--primary-color);
        opacity: 0.1;
    }

.header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 15px;
}

.company-name {
    font-family: 'Book Antiqua', Palatino, serif;
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0;
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 40px;
    color: #aaa;
}

.footer {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #777;
}

.login-page {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Para páginas internas do sistema */
.app-header {
    background-color: white;
    box-shadow: 0 2px 5px var(--shadow-color);
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

    .app-header .logo {
        height: 40px;
        margin-right: 15px;
    }

    .app-header .company-name {
        font-size: 20px;
    }

/* Responsividade */
@media (max-width: 480px) {
    .login-container {
        padding: 30px 20px;
        margin: 0 15px;
    }
}
