/* colors */
html {
    width: 100%;
    height: 100%;
}

body {
    background-color: #eff3f4;
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 100;
    -webkit-font-smoothing: antialiased;
}

.contentContainer {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 25%;
    max-width: 450px;

    background-color: #FFF;
    margin: 0;
    padding: 1.25em;
    box-sizing: border-box;
    border: solid 1px #DDD;
    border-radius: .5em;
    font-family: 'Source Sans Pro', sans-serif;
}

.contentContainer .svgContainer {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1em;
    border-radius: 50%;
    background: none;
    border: solid 2.5px #3A5E77;
    overflow: hidden;
    pointer-events: none;
}

.contentContainer .svgContainer div {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-bottom: 100%;
}

.contentContainer .svgContainer .mySVG {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.contentContainer .inputGroup {
    padding: 0;
    height: 65px;
    position: relative;
}

.contentContainer .inputGroup:last-of-type {
    margin-bottom: 0;
}

.contentContainer label {
    margin: 0 0 11px;
    display: block;
    font-size: 1.25em;
    color: #217093;
    font-weight: 500;
    font-family: inherit;
}

.contentContainer input[type='email'],
.contentContainer input[type="text"],
.contentContainer input[type='password'] {
    display: block;
    margin: 0;
    padding: 0 1em 0;
    background-color: #f3fafd;
    border: solid 2px #217093;
    border-radius: 4px;
    -webkit-appearance: none;
    box-sizing: border-box;
    width: 100%;
    height: 50px;
    font-size: 1.11em;
    color: #353538;
    font-weight: 600;
    font-family: inherit;
    transition: box-shadow .2s linear, border-color .25s ease-out;
}

.contentContainer input[type='email']:focus,
.contentContainer input[type="text"]:focus,
.contentContainer input[type='password']:focus {
    outline: none;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    border: solid 2px #4eb8dd;
}

.contentContainer input[type='email'],
.contentContainer input[type="text"] {
    padding: 14px 1em 0px;
}

.contentContainer button {
    display: block;
    margin: 0;
    padding: .1em 1em 1em;
    background-color: #4eb8dd;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: none;
    width: 100%;
    height: 45px;
    font-size: 1.55em;
    color: #FFF;
    font-weight: 600;
    font-family: inherit;
    transition: background-color .2s ease-out;
}

.contentContainer button:hover,
.contentContainer button:active {
    background-color: #217093;
}

.contentContainer .inputGroup1 .helper {
    position: absolute;
    z-index: 1;
    font-family: inherit;
}

.contentContainer .inputGroup2 .helper {
    position: absolute;
    z-index: 1;
    font-family: inherit;
}

.contentContainer .inputGroup1 .helper1 {
    top: 0;
    left: 0;
    transform: translate(1.4em, 2.6em) scale(1);
    transform-origin: 0 0;
    color: #217093;
    font-size: 1.25em;
    font-weight: 400;
    opacity: .65;
    pointer-events: none;
    transition: transform .5s ease-out, opacity .2s linear;
}

.contentContainer .inputGroup2 .helper2 {
    top: 0;
    left: 0;
    transform: translate(1.4em, 2.6em) scale(1);
    transform-origin: 0 0;
    color: #217093;
    font-size: 1.25em;
    font-weight: 400;
    opacity: .65;
    pointer-events: none;
    transition: transform .5s ease-out, opacity .2s linear;
}

.contentContainer .inputGroup1.focusWithText .helper {
    /*input[type='email']:focus + .helper {*/
    transform: translate(1.4em, 2.3em) scale(0.65);
    opacity: 1;
}

.contentContainer .inputGroup2.focusWithText .helper {
    /*input[type='email']:focus + .helper {*/
    transform: translate(1.4em, 2.3em) scale(0.65);
    opacity: 1;
}

.watsonLogo {
    position: relative;
    right: -59px;
    transform: rotate(41deg);
    bottom: -38px;
    pointer-events: none;
}

.noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                              supported by Chrome, Edge, Opera and Firefox */
}