.mx-link-shortener-form > div {
	display: flex;
	flex-direction: column;
	margin-bottom: 25px;
}
.mx-link-shortener-form label {
	display: inline-block;
    margin-bottom: 0.5rem;
}
.mx-link-shortener-form input[type="url"],
.mx-link-shortener-form input[type="email"] {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    border: 1px solid #cacaca;
    height: 50px;
    font-size: 16px;
}
.mx-link-shortener-form button.mx-link-shortener-form-button,
.mx-link-shortener-form button.mx-link-shortener-form-button:not(:hover):not(:active):not(.has-background) {
	display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
    padding: 20px;
    font-size: 20px;
}
.mx-link-shortener-form button.mx-link-shortener-form-button:hover {
	color: #fff;
    background-color: #004998;
    border-color: #004998;
    text-decoration: none;
}
.mx-link-shortener-form-errors ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
.mx-link-shortener-form-errors ul li {
	padding: 0;
	margin: 0;
	list-style-type: none;
	color: red !important;
	font-size: 15px;
}
.mx-link-shortener-form-success {
    padding: 20px;
    border: 2px solid green;
    color: green;
    text-align: center;
    background-color: rgb(0 128 0 / 16%);
}
.mx-link-shortener-form-error {
    padding: 20px;
    border: 2px solid red;
    color: red;
    text-align: center;
    background-color: rgb(255 49 0 / 45%);
}
.mx_link_shortener_wrapper {
    max-width: 500px;
    margin: 20px auto;
}
.mx-link-shortener-form > div.mx_agreement_wrapper {
    display: flex;
    flex-direction: row;
}
.mx_agreement_wrapper > div:first-child {
    margin-right: 10px;
}