body {
    background-color: #7aa39a;
    color: #2c3e50;
}

input,
select,
.form-control,
.form-select {
    /*
    background-color: #c2dfe3;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 1px 1px 1px 0px #e0fbfc;
    */
    background-color: #c2dfe3;
    padding: 10px !important;
    font-size: 16px !important;
    border: 2px solid #ccc !important; /* Borde inicial */
    border-radius: 5px !important;
    outline: none !important; /* Elimina el borde de enfoque predeterminado */
    transition: all 0.3s ease !important; /* Suaviza la transición del borde y sombra */
    box-shadow: 0 0 0px rgba(52, 152, 219, 0) !important; /* Sombra inicial */
}
input::placeholder,
select,
select::placeholder,
option,
option::placeholder,
.form-control,
.form-control::placeholder,
.form-select,
.form-select::placeholder {
    color: black; /* Color llamativo */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* Sombra sutil */
    font-weight: bold; /* Hace que el texto sea más grueso */
}
input:focus,
select:focus,
.form-control:focus,
.form-select:focus {
    border-color: #3498db !important; /* Cambia el color del borde en enfoque */
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.6) !important; /* Agrega una sombra colorida */
    background-color: #f0f8ff !important; /* Cambia ligeramente el color de fondo */
    transform: scale(1.02) !important; /* Agranda ligeramente el input */
}
input:focus::after,
select:focus::after,
.form-control:focus::after,
.form-select:focus::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 3px !important;
    background: linear-gradient(
        90deg,
        #3498db,
        #8e44ad
    ) !important; /* Degradado del borde animado */
    animation: borderAnimation 1s linear infinite !important; /* Anima el borde */
    border-radius: 5px !important;
}
@keyframes borderAnimation {
    0% {
        transform: translateX(-100%) !important;
    }
    100% {
        transform: translateX(100%) !important;
    }
}
.contenedor {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    height: 94vh;
}
.boton {
    background-color: #e0fbfc;
    outline: solid 1px black;
    box-shadow: none;
    transition: all 0.2s ease;
}
.boton:hover {
    background-color: #e0fbfc;
    outline: solid 1px black;
    box-shadow: none;
    transform: scale(1.2);
    transition: all 0.2s ease;
}

.boton:focus {
    background-color: #e0fbfc;
    outline: solid 1px black;
    box-shadow: none;
    transform: scale(1);
    transition: all 0.2s ease;
}

table {
    background-color: #aed6f1 !important;
    color: #000000 !important;
    font-size: 30px;
    overflow: hidden;
}
td,
th {
    border: solid 2px #707070;
    background-color: #aed6f1;
}

th {
    background-color: #58d68d;
}
