form[vw-type="webhook-form"] {
    position: absolute;
    top: 0;
    left: 300px;
    height: calc(100% - 100px);
    width: calc(100% - 300px);
    padding: 50px 10%;
    overflow: auto;

    display: flex;
    flex-direction: column;
}

form[vw-type="webhook-form"][vw-orientation="vertical"] {
    flex-direction: column;
}

form[vw-type="webhook-form"][vw-orientation="horizontal"] > fieldset {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0.5rem 0;
}

form[vw-type="webhook-form"][vw-orientation="horizontal"] > fieldset[vw-type="textarea"] {
    align-items: flex-start;
}

form[vw-type="webhook-form"][vw-orientation="horizontal"] > fieldset > label {
    font-weight: 600;
    width: 200px;
}

form[vw-type="webhook-form"][vw-orientation="horizontal"] > fieldset > input[type="text"],
form[vw-type="webhook-form"][vw-orientation="horizontal"] > fieldset > input[type="number"],
form[vw-type="webhook-form"][vw-orientation="horizontal"] > fieldset > input[type="password"],
form[vw-type="webhook-form"][vw-orientation="horizontal"] > fieldset > span.select2,
form[vw-type="webhook-form"][vw-orientation="horizontal"] > fieldset > textarea {
    flex: 1;
}

form[vw-type="webhook-form"] > h1 {
    font-size: 1.75rem;
    font-weight: bold;
    color: #3699FF;
}

form[vw-type="webhook-form"] > h2 {
    font-size: 1.2rem;
    color: #4d4d4d;
    font-weight: 500;
}

form[vw-type="webhook-form"] > label {
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: .5rem;
}

form[vw-type="webhook-form"] section[vw-type="actions"] {
    display: flex;
    justify-content: flex-end;
    margin-top: 3.75rem;
    gap: 1rem;
}

form[vw-type="webhook-form"] div.validation-summary-valid {
    display: none;
}

nav[vw-type="webhook-action-bar"] {
    position: absolute;
    width: calc(100% - 300px);
    right: 0;
    background: transparent;
    display: flex;
    justify-content: flex-end;
    bottom: 0;
    padding: 2rem;
    gap: 2rem;
}