@import url(./footer.css);
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
:root {
    --color-blue: #183896;
}

/* GLOBALS */

h1 {
    font-size: 60px;
}

.container-body {
    height: 100%;
}

.inicio {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("../src/img/tecnm-background.jpeg");
    background-size: cover;
    background-position: center center;
}

.container-index {
    height: 100%;
    backdrop-filter: blur(5px);
}

.container-content {
    height: calc(100% - 260px);
    align-items: center;
}

.form-index {
    background-color: rgba(250, 250, 250, 0.5);
}

.border-dashed {
    border: 2px dashed #ccc !important;
}

/* MODAAAAL */

.modalDialog {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
    overflow: hidden;
}
.modalDialog:target {
    opacity: 1;
    pointer-events: auto;
}
.modalDialog > div {
    width: 400px;
    position: relative;
    margin: 10% auto;
    padding: 5px 20px 13px 20px;
    border-radius: 10px;
    background: #fff;
    background: white;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
}
.close {
    color: #000;
    /* line-height: 25px; */
    /* right: 5px; */
    /* top: 5px; */
    /* position: absolute; */
    text-align: center;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
}
.close:hover {
    color: red;
}
