* {
    /* stop padding and margin from adding to the width and height of elements */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.cdn-form-group {
    margin-bottom: 12px;
    position: relative;
}

.cdn-form-input {
    width: 100%;
    height: 36px;
    display: block;
    color: #273541;
    background-color: #ffffff;
    font-size: 14px;
    padding: 4px 12px;
    border: 1px solid #9197a3;
    border-radius: 3px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.cdn-required {
    color: #f1464d;
}

.cdn-form-error-message {
    letter-spacing: 0.03em;
    padding-top: 3px;
    color: #f1464d;
    font-size: 11px;
}

.cdn-form-group-error .cdn-form-label:after {
    font-family: MaterialIcons;
    font-size: 18px;
    content: 'priority_high';
    color: #f1464d;
    display: block;
    width: 25px;
    height: 36px;
    line-height: 36px;
    position: absolute;
    right: 0;
}

.cdn-form-group-error .cdn-form-input {
    -webkit-box-shadow: 0 0 0 1px #f1464d;
    box-shadow: 0 0 0 1px #f1464d;
    border: 1px solid #f1464d;
}

.cdn-form-input:focus {
    -webkit-box-shadow: 0 0 0 1px #518aff;
    box-shadow: 0 0 0 1px #518aff;
    border: 1px solid #518aff;
}

.cdn-form-label {
    display: block;
    line-height: 30px;
    font-size: 14px;
    font-weight: 400;
    color: #6e7480;
    letter-spacing: 0.03em;
    margin-bottom: 0px;
}

.cdn-btn {
    cursor: pointer;
    font-size: 14px;
    padding: 8px 26px 8px 25px;
    border-radius: 100px;
    font-weight: 500;
    text-align: center;
    min-width: 100px;
}

.cdn-btn-primary {
    color: #ffffff;
    border-color: #518aff;
    background: #518aff;
}

.cdn-btn-primary:hover {
    background: #3779ff;
    border-color: #3779ff;
}