body {
    font-family: Tahoma, sans-serif;

    background-image: url('/Recursos/fondo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;

    margin: 0; 
    height: 100vh;
}

.container {
    display: grid;
    place-items: center;
}

.encabezado {
    margin-top: 70px;
    font-size: 28px;
    color: black;
}

.encabezado-primeralinea {
    color: #346f8b;
    font-weight: bold;
}

.encabezado-resaltar {
    color: #202f54;
    font-weight: bold;
}

.info {
    width: 350px;
    padding: 10px 40px;
    background-color: #50869d;
    border-radius: 25px;
    opacity: 0.95;

    color: white;
    font-size: 14px;
}

.info-encabezado {
    font-weight: bold;
    color: white;
    font-size: 18px;
}

.calendar {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.icon {
    max-width: 65px;
    height: auto;
    margin-right: 20px;
}

.text-content {
    flex: 1;
    font-size: 12px;
}

.container-logo {
    position: absolute;
    right: 0;
}

.logo {
    width: 180px;
    margin-top: 20px;
    margin-left: 700px;
}

.container-button{
    margin-top: 30px;
    margin-bottom: 40px;
}

/* Boton */
.button {
    height: 40px;
    align-items: center;
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: .25rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
    box-sizing: border-box;
    color: #346f8b;
    cursor: pointer;
    display: inline-flex;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    line-height: 1.25;
    margin: 0;
    min-height: 3rem;
    padding: calc(.875rem - 1px) calc(1.5rem - 1px);
    position: relative;
    text-decoration: none;
    transition: all 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    width: 420px;
}

.button:hover,
.button:focus {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
    color: #346f8b;
}

.button:hover {
    transform: translateY(-1px);
}

.button:active {
    background-color: #F0F0F1;
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
    color: rgba(0, 0, 0, 0.65);
    transform: translateY(0);
}



@media (max-width: 880px) {
    .logo{
        margin-left: 0;
    }
}