﻿@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&family=Roboto+Mono:wght@400;700&family=Roboto:wght@900&display=swap');

.modal-form{
    color: red;
    background-color: #111111bd;
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.5s;
    pointer-events: none;
}
.modal--show {
    opacity: 1;
    pointer-events: unset;
    transition: 0.5s;
}
.modal-container-form {
    background-color: white;
    color: black;
    width: 25%;
    margin: 0px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 6px 6px rgba(0, 0, 0, 0.2);
}
#closeModal:hover{
    background-color:transparent;
    cursor:pointer;
}
.modal-header-form {
    color: white;
    background-color: #4F4F4F;
    border-radius: 20px 20px 0px 0px;
    padding: 10px;
    height: 10%;
    font-family: 'Roboto Condensed';
    font-weight: 400;
    font-size: larger;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}
.modal-body-form{
    padding: 15px;
    text-align:center;
}
.modal-footer-form{
    padding: 15px;
    display:flex;
    justify-content:center;
}

@media screen and (max-width: 480px) {
    .modal-container-form {
        width: 80%;
    }
    .modal-body-form {
        padding: 15px;
    }

    .modal-footer-form {
        padding: 15px;
        display: flex;
        justify-content: center;
    }

}
@media screen and (max-width: 768px) {
    /* Si la pantalla es más pequeña o igual a 768px de ancho */
    .modal-container-form {
        width: 80%;
    }

    .modal-body-form {
        padding: 15px;
    }

    .modal-footer-form {
        padding: 15px;
        display: flex;
        justify-content: center;
    }

}
