/* Reset padrão */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Corpo da página */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(90deg, rgba(224,224,224,1) 0%, rgba(223,223,223,1) 35%, rgba(210,210,210,1) 100% );

}

/* Container principal */
.login-container {
    display: flex;
    width: 900px;
    height: 500px;
    background: linear-gradient(135deg, #00122a, #003d73);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(13, 0, 255, 0.2);
    overflow: hidden;
}

/* Lado esquerdo (fundo decorativo) */

/* Lado esquerdo (fundo decorativo) */
.left-side {
    width: 50%;
    height: 75vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 70px; /* Reduz o espaço do topo */
    gap: 5px; /* Quase nenhum espaço entre logo e canvas */
}

.logo {
    height: 60px;
    margin-bottom: 0; /* Remove margem extra */
}

/* Canvas para animação Lottie */
#dotlottie-canvas {
    width: 100%;
    max-width: 500px;
    height: auto;
    flex-shrink: 0; /* Evita que o canvas colapse */
    margin-top: 0; /* Garante que não tenha margem superior */
}





/* Lado direito (formulário) */
.right-side {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    Color: #E3B329;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    padding: 30px;
}

/* Título do login */
.login-title {
    font-size: 36px;
    font-weight: bold;
    color: #E3B329;
    margin-bottom: 20px;
    text-transform: lowercase;
}

/* Estilização dos campos de input */
.input-group {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #888;
    background: transparent;
    color: #000000;
    font-size: 16px;
    outline: none;
}

.input-group label {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    pointer-events: none;
    transition: 0.3s ease;
}

/* Efeito quando o usuário digita */
.input-group input:focus + label,
.input-group input:valid + label {
    top: 0;
    font-size: 12px;
    color: #000000;
}

/* Botão de login */
.login-button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.login-button:hover {
    transform: scale(1.05);
}