* {
    padding: 0;
    margin: 0;
}

body, html {
    height: 100vh;
}

body {
    color: #333;
    font-size: 14px;
}

html {
    box-sizing: border-box;
}

html *,
html *:before,
html *:after {
  box-sizing: inherit;
}

h1, h2, h3, h4, h5 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.1;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 14px;
}
h6 {
  font-size: 12px;
}
p {
  margin: 0 0 10px;
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}
ol, ul {
  margin-top: 0;
  margin-bottom: 10px;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a:focus {
  text-decoration: none;
}

.hidden {
    display: none !important;
}

.mx-form input {
    display: inline-block;
    width: 200px;
    padding: 8px 10px;
    margin: 4px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    vertical-align: middle;
    transition: all 0.3s;
}

.mx-form .mx-form-message {
    padding: 10px 0 5px 0;
    margin-bottom: 5px;
    border-bottom: 1px dotted #ccc;
}

.mx-form .mx-control-group {
    margin-bottom: 20px;
}

.mx-form .mx-control-group label {
    width: 100px;
    display: inline-block;
}

.mx-button {
    display: inline-block;
    padding: 8px 16px;
    color: #333;
    text-align: center;
    background: #e6e6e6;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.mx-button:focus, .mx-button:hover {
    outline: 0;
    cursor: pointer;
}
