﻿body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-y: hidden;
    height: 100vh;
    display: flex;
    margin: 0;
}

/* Estilos para as divisões laterais */
.left-side, .right-side {
    display: flex;
    height: 100vh;
    width: 50%;
}

/* Lado esquerdo com o login */
.left-side {
    background-color: #f8f9fa;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Lado direito com cor de fundo */
.right-side {
    background-color: #333; /* Imagem para o logo */
    align-items: flex-start;
}

/* Esconde a mobile-navbar no desktop */
.mobile-navbar {
    display: none;
}

@media (max-width: 768px) {

    /* Esconde o right-side no mobile */
    .right-side {
        display: none !important;
    }

    .login-container {
        justify-content: center;
    }
}


/* Logo no lado esquerdo */
.login-logo {
    background-image: url('/images/Logo_Webtax_Alta_FT_V2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 150px;
    height: 150px;
}

/* Animação para mostrar o login */
.login-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(-100vh);
    opacity: 0;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    transition-delay: 0.3s;
}

.login-container.loaded .login-content {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0s;
}


.login-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

input[type="email"],
input[type="password"] {
    border-radius: 30px;
    margin-bottom: 20px;
    border: 2px solid #d1d3e2;
    width: 100%;
}

.forgot-password {
    color: #858796;
    text-decoration: none;
}

    .forgot-password:hover {
        color: #4e73df;
        text-decoration: underline;
    }

.navbar-dark .navbar-nav .nav-link {
    position: relative;
    color: #fff; 
    text-decoration: none;
}

.navbar-dark .navbar-nav .nav-link, .navbar-dark .navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, 1);
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: rgb(243 84 68 / 100%);
}

    .navbar-dark .navbar-nav .nav-link:not(.dropdown-toggle)::after {
        content: '';
        display: block;
        width: 0;
        height: 2px;
        background-color: rgb(243, 84, 68);
        transition: width 0.3s ease;
        position: absolute;
        left: 50%;
        bottom: -5px;
        transform: translateX(-50%);
    }

/* Apenas para itens que não são dropdowns */
.navbar-dark .navbar-nav .nav-item:not(.dropdown) .nav-link:hover::after {
    width: 100%; /* Expande a largura da linha para 100% ao passar o mouse */
}

label {
    font-size: .9rem;
    margin-bottom: .5rem;
}