html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    /*-----------------------------------------*/

    /*Color de fondo*/
    background-color: #F8F3E8;
    margin-bottom: 60px;
}

/* Barra superior */
.navbar {
    background-color: #F4B6C2 !important;
}
.navbar-brand,
.nav-link {
    color: white !important;
}
    .navbar-brand:hover,
    .nav-link:hover {
        color: white !important;
    }

/* Títulos */
h1, h2, h3 {
    font-style: italic;
    color: #6b5b5b;
    text-align: center;
}

/*Titulos de los campos*/
label {
    font-style: italic;
    font-weight: 500;
    color: #555;
}

/* Botones */
.btn,
button,
input[type="submit"] {
    background-color: #F4B6C2 !important;
    border-color: #F4B6C2 !important;
    color: black !important;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
    .btn:hover,
    button:hover,
    input[type="submit"]:hover {
        background-color: #e8a7b5 !important;
        border-color: #e8a7b5 !important;
    }

/* Tablas */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: white !important;
    border-radius: 10px;
    overflow: hidden;
}



th {
    background-color: #F4B6C2;
    color: white;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    border-bottom: 2px solid #F8F3E8;
    font-style: italic;
}


td {
    padding: 10px;
    border: 3px solid #F8F3E8;
    text-align: center;
}
/* Inputs */
input,
select,
textarea {
    border-radius: 6px !important;
}
 /*Bienvenida*/
.bienvenida {
    text-align: center;
    font-style: italic;
    font-size: 2rem;
    font-weight: bold;
    color: #6b5b5b;
    margin-top: 30px;
    margin-bottom: 30px;
}

/*Barra inferior*/
footer,
.footer {
    background-color: #F4B6C2 !important;
    color: white !important;
    padding: 3px 0 !important; 
    margin: 0 !important;
    width: 100%;
    text-align: center;
}

/*----------------------------------------*/

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}