/* Container for the page, offset by navbar */
.login-page {
    background-color: var(--ap-bg-page);
}

.login-main {
    min-height: 100vh;
    padding-top: var(--ap-nav-height);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 80px;
    font-family: 'Inter', sans-serif;
    position: relative;
    box-sizing: border-box;
    gap: 32px;
}

/* Login Card */
.login-card {
    background-color: var(--ap-bg-card);
    border: 1px solid var(--ap-border);
    border-radius: 16px;
    padding: 48px;
    width: 100%;
    max-width: 440px;
    text-align: center;
    box-shadow: var(--ap-shadow-xl);
    position: relative;
    z-index: 10;
}

.login-logo {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: var(--ap-bg-page);
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.login-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--ap-text-primary);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.login-subtitle {
    font-size: 16px;
    color: var(--ap-text-muted);
    margin-bottom: 36px;
    font-weight: 400;
}

/* Divider */
.login-divider-container {
    display: flex;
    align-items: center;
    margin-bottom: 36px;
    color: var(--ap-text-muted);
    font-size: 14px;
}

.login-divider {
    flex: 1;
    height: 1px;
    background: var(--ap-border);
}

.login-divider-text {
    padding: 0 16px;
}

/* Buttons */
.btn-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--ap-accent);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(79, 125, 243, 0.3);
}

.btn-google:hover {
    background-color: var(--ap-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(79, 125, 243, 0.4);
}

.btn-google svg {
    flex-shrink: 0;
}

.login-footer-note {
    font-size: 14px;
    color: var(--ap-text-muted);
    margin-top: 36px;
}

/* Bottom Footer */
.page-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--ap-border);
    color: var(--ap-text-muted);
    font-size: 14px;
    z-index: 5;
}

.page-footer a {
    color: var(--ap-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.page-footer a:hover {
    color: var(--ap-text-primary);
}

/* Responsividade */
@media (max-width: 600px) {
    .login-card {
        padding: 32px 24px;
        max-width: 90%;
    }

    .page-footer {
        flex-direction: column;
        gap: 12px;
        padding: 24px;
        text-align: center;
    }
}