﻿/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 280px;
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .body-content {
        padding: 0;
    }
}

.btn-redondeado {
    border-style: none;
    border-color: inherit;
    border-width: medium;
    /*background-color: #4da6ff;*/
    background-color: #0d6efd;
    color: white;
    font-weight: normal;
    font-size: 14px;
    padding: 8px 50px; /* menos alto (8px), más ancho (50px) */
    line-height: normal;
    border-radius: 8px;
    cursor: pointer;
    /* puedes usar 100% si quieres ocupar toda la fila */
    box-sizing: border-box;
    text-align: center;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 50px;
}

    .btn-redondeado:hover {
        /*background-color: #3399ff; /* azul un poco más fuerte al pasar el mouse */
        background-color: #0b5ed7;
        transform: scale(1.02);
    }

    .btn-redondeado:active {
        transform: scale(0.98);
    }
