.meetingsForm {
    width: 90%;
    margin: 0 5%;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
}

.meetingsLabel {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #22326b;
}

.meetingsForm > p > input[type="text"],input[type="url"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #8e9ca5;
    border-radius: 5px;
}

.meetingsForm > p > .meetingsLabel{
    pointer-events: none;
}

.meetingsForm > p > input[type="text"]:hover, input[type="url"]:hover {
    outline: 1px solid #000000;
}

.meetingsForm > p > input[type="text"]:focus, input[type="url"]:focus {
    outline: 1px solid #000000;
}

.meetingsForm > input[type="submit"] {
    display: block;
    padding: 1.5% 8%;
    min-height: 40px;
    background: #22326b;
    color: #fff;
    border: none;
    border-radius: 4px;
    line-height: 18px;
    font-size: 25px;
    cursor: pointer;
    font-weight: bold;
    margin: 0 auto;
    transition: all 0.3s;
}

.meetingsForm > input[type="submit"]:hover {
    background:#71789b;
    text-decoration: none;
    box-shadow: 0 5px 7px rgba(0,0,0,.15) 
}

.nav-item > .active{
    background-color: #22326b !important;
}

.recaptcha-container {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}


@media (max-width:767px) {
    .meetingsForm > p > .meetingsLabel{
        pointer-events: auto;
    }
}