.frame {
    border: 1px solid #ccc;
    padding: 10px;
    position: relative;
    margin-bottom: 20px;
    margin-top: 20px;
}

.frame::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 0;
    left: -1px;
    width: 1px;
    background-color: #ccc;
}

.title {
    font-weight: bold;
    margin-top: -15px;
    background-color: #fff;
    padding: 0 10px;
    position: absolute;
    top: 0px;
    left: 10px;
}

.form-group {
    margin-bottom: 0px;
    margin-top: 10px;
}

.header {
    background-color: #f5f5f5;
    padding: 10px;
    margin-bottom: 20px;
}

.footer {
    background-color: #f5f5f5;
    padding: 10px;
    margin-top: 20px;
}

.mandatory::before {
    content: "*";
    color: red;
    margin-right: 4px;
}

.alert {
    margin-top: 5px;
    margin-bottom: 0;
}