/* Archivo styles.css */

body.bg-gradient {
    background: linear-gradient(135deg, #a4e8f1 0%, #6fe2f1 50%, #2ed0e6 100%);
    background-attachment: fixed;
    color: #333;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

h2 {
    color: rgb(215, 65, 50);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

p {
    color: #230063;
    font-size: 1.0rem;
}

a {
    color: #230063;
    font-size: 1.0rem;
}

.container {
    background: rgba(99, 24, 67, 1);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.container2 {
    background: rgba(255, 255, 255, 1);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.bullet-list {
    list-style-type: disc;
    padding-left: 20px;
}

.bullet-list li {
    margin-bottom: 5px;
}

.btn-custom {
    background-color: rgb(99, 24, 67); /* Color de fondo personalizado (verde en este caso) */
    color: white; /* Color del texto */
    border-color: rgb(99, 24, 67); /* Color del borde personalizado */
}

.btn-custom:hover {
    background-color: rgb(215, 65, 50); /* Color de fondo al pasar el mouse */
    border-color: rgb(215, 65, 50); /* Color del borde al pasar el mouse */
}

.btn-custom:active {
    background-color: rgb(215, 65, 50); /* Color de fondo más oscuro cuando está pulsado */
}