.left-text-layer {
    white-space: nowrap;
    font-size: 40px; /* Tamaño de fuente aumentado */
    line-height: 40px;
    font-weight: 600; /* Negrita */
    color: #000; /* Negro */
    letter-spacing: 30px;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    
    justify-content: center; /* Alinea horizontalmente en el centro */
    align-items: center; /* Alinea verticalmente en el centro */
    
    text-align: center;
}

.right-text-layer {
    white-space: nowrap;
    font-size: 40px; /* Tamaño de fuente aumentado */
    line-height: 40px;
    font-weight: 600; /* Negrita */
    color: #fff; /* Blanco */
    letter-spacing: 30px;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    
    justify-content: center; /* Alinea horizontalmente en el centro */
    align-items: center; /* Alinea verticalmente en el centro */
    
    text-align: center;
}

.button-layer {
    white-space: nowrap;
    font-size: 15px;
    line-height: 60px;
    font-weight: 700;
    letter-spacing: 5px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

.right-button-layer:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
}

.single-text-layer {
    white-space: normal;
    font-size: 80px; /* Tamaño de fuente aumentado */
    line-height: 80px;
    font-weight: 700; /* Negrita */
    letter-spacing: 30px;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    color: #000; /* Negro por defecto, ajusta esto en el HTML si necesitas diferentes colores */
    max-width: 900px;
    text-align: center;
}

.alert-success {
    color: green;
    background-color: #d4edda;
    border-color: #c3e6cb;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}
.alert-danger {
    color: red;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}

.div-texto {
    width: 100%;            /* Ajusta según necesites */
    word-wrap: break-word;  /* Asegura que el texto se ajuste correctamente */
    hyphens: auto;          /* Permite dividir palabras correctamente */
}