.container {
    padding-top: 30px !important;
    border-bottom: 1px solid gray;
}
.alert-form-input {
    border: 1px solid red;
}
.row {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
label {
    font-weight: bold;  
}
.formLabel {
    margin-left: 10px;  
}
.row>* {
    margin-top: 10px !important;
}
.middle {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
}

.modal .content {
    position: relative;
    padding: 10px;
    width: 400px;
    height: 500px;
    border-radius: 0.25rem;
    background-color: #fff;
    box-shadow: rgba(112, 128, 175, 0.2) 0px 16px 24px 0px;
    transform: scale(0);
    transition: transform 300ms cubic-bezier(0.57, 0.21, 0.69, 1.25);
    font-size: 16px;
}

.modal .close {
    position: absolute;
    top: 3px;
    right: 15px;
    width: 20px;
    height: 20px;
    /*cursor: pointer;
    border-radius: 8px;
    background-color: #7080af;
    clip-path: polygon(0 10%, 10% 0, 50% 40%, 89% 0, 100% 10%, 60% 50%, 100% 90%, 90% 100%, 50% 60%, 10% 100%, 0 89%, 40% 50%);*/
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal.open .content {
    transform: scale(1);
    -webkit-box-shadow: 0px 0px 20px 5px rgba(255,0,0,0.7); 
    box-shadow: 0px 0px 20px 5px rgba(255,0,0,0.7);
}

.container.blur {
    filter: blur(5px);
}

.modalcontent-div {
    float: left;
    width: 50%;
}

.p-danger {
    background-color: darkred;
    color: white;
 }

.p-important {
    font-weight: bold;
 }

.content > button {
    margin-top: 30px !important;
}

.content > p {
    margin-bottom: 10px !important;
 }