* {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 500;
    padding: 0;
    margin: 0;
}

.example.emagStyle {
    background-color: #fff;
    min-height: 460px;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.08), 0 4px 12px 0 rgba(0,0,0,0.15);
}

.row {
    display: flex;
    margin: 0 5px 20px;
}

.field {
    position: relative;
    width: 100%;
    height: 36px;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10px 3px;
    border: 1px solid transparent;
    border-radius: 7px;
    background: linear-gradient(to right, white, white),
    linear-gradient(140deg, #030d2b, #0f47ff);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
}

.field.half-width {
    width: 50%;
}

.field.quarter-width {
    width: calc(25% - 10px);
}

.field__error {
    position: absolute;
    top: 104%;
    left: 0;
    color: red;
    font-size: 10px;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity;
}

.POSElement.invalid + .field__error {
    opacity: 1;
}

.input {
    color: #778195;
    font-weight: bold;
}

.input::placeholder {
    color: #CFD7DF;
}

.input.invalid {
    color: red;
}

input, button {
    appearance: none;
    outline: none;
    border-style: none;
}

input, button {
    -webkit-animation: 1ms void-animation-out;
}

button[type='submit'] {
    display: block;
    width: calc(100% - 30px);
    height: 40px;
    margin: 40px 15px 0;
    background-color: #3750CD;
    border-radius: 4px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
}

.error svg {
    margin-top: 0 !important;
}

.error svg .base {
    fill: #e25950;
}

.error svg .glyph {
    fill: #fff;
}

.error .message {
    color: #e25950;
}

.success .icon .border {
    stroke: #030d2b;
}

.success .icon .checkmark {
    stroke: #0f47ff;
}

.success .title {
    color: #32325d;
    font-size: 16px !important;
}

.success .message {
    color: #8898aa;
    font-size: 13px !important;
}

.success .reset path {
    fill: #0f47ff;
}