﻿/*index.aspx */

.body-content {
    margin-top: 5px;
    padding-left: 5px;
    padding-right: 5px;
}
    

h1,h3, p {
    color: rebeccapurple;
}
a {
    color: gray;
    font-family: 'Arial', sans-serif; /* Cambia la fuente */
    font-size: 16px; /* Cambia el tamaño de la fuente */
}

    a:hover {
        color: lightgray;
        font-weight: bold; /* Hace el texto en negrita al pasar el cursor */
    }

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .body-content {
        padding: 0;
    }
}
    
body {
    font-family: Monserrat, Arial, 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background-color: white;
    display: grid;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('/Images/fondo APP.jpg');
    background-size:cover;
    background-repeat:no-repeat;
    
}


.caja-texto {
    background-color: white;
    color: black;
    border: 1px solid white;
    border-bottom-color:  mediumpurple;
    border-bottom-width: 2px; /* Cambia el ancho del borde inferior */

    padding: 5px;
    font-size: 16px;
    width:100%;
}

    .caja-texto:focus {
        outline: none; /* Quita el borde azul por defecto al enfocar */
        /*border-color: gray;  Cambia el color del borde al enfocar */
        border-bottom-color: firebrick;
        border-bottom-width: 2px; /* Cambia el ancho del borde inferior */
    }

.container {
    /*configuracion inicial del container */
    max-width: 1200px; /* Ancho máximo del container */
    margin: 0 auto; /* Centrado horizontal */
    padding: 20px; /* Márgenes internos */
    background-color: #f9f9f9; /* Estilo de fondo */
    font-family: 'Vegur', 'PT Sans', Verdana, sans-serif;
}