@font-face {
    font-family: 'AvenirLight';
    src: url("../fonts/AvenirLight.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: 'AvenirLight', Arial, sans-serif;
    cursor: pointer;
}

.container {
    display: flex;
    align-items: center;
    gap: 60px; /* espacio entre los elementos */
}

/* 🔹 Línea vertical */
.divider {
    width: 1.0px;           /* grosor línea */
    height: 180px;          /* alto de la línea */
    background-color: #3b3c43; /* negro */
    opacity: 0.4;           /* igual al estilo de tu referencia */
}

.logo img {
    width: 350px;
}

.text {
    display: flex;
    flex-direction: column;
}

.linea {
    width: 60px;
    height: 6px;
    background-color: #dbac00;
    margin-bottom: 10px;
}

.bienvenidos {
    font-size: 2.5em;
    font-weight: bold;
    margin: 0;
    color: #3b3c43; 
}

.welcome {
    font-size: 1.5em;
    margin: 0;
    color: #bdbcbc;
    font-weight: bold;
}
