@font-face {
    font-family: 'ginnyfont';
    src: url(fonts/Ginny_gdi.eot?v=1);
    src: url(fonts/Ginny_gdi.eot?#iefixv=1) format('embedded-opentype'), url(fonts/Ginny_gdi.woff?v=1) format('woff'), url(fonts/Ginny_gdi.ttf?v=1) format('truetype');
    font-weight: 400;
    font-style: normal
}

/* colors */
html {
    width: 100%;
    height: 100%;
}

body {
    background-color: #eff3f4;
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    font: 400 14px/20px 'ginnyfont', Arial, sans-serif;
}

form {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
    max-width: 400px;
    background-color: rgba(255,255,255,.8);
    margin: 0;
    padding: 2.25em;
    box-sizing: border-box;
    border: solid 1px #DDD;
    border-radius: .5em;
}

form .svgContainer {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1em;
    border-radius: 50%;
    background: none;
    border: solid 2.5px #3A5E77;
    overflow: hidden;
    pointer-events: none;
}

form .svgContainer div {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-bottom: 100%;
}

form .svgContainer .mySVG {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

form .inputGroup {
    margin: 0 0 2em;
    padding: 0;
    position: relative;
}

form .inputGroup:last-of-type {
    margin-bottom: 0;
}

form .inputGroup2 #password {
    padding: 0 10px;
}

form label {
    margin: 0 0 5px;
    display: block;
    font-size: 1.25em;
    color: #217093;
    font-weight: 700;
    font-family: inherit;
}

form input[type='email'], form input[type="text"], form input[type='password'] {
    display: block;
    margin: 0;
    background-color: #f3fafd;
    border: solid 1px #146b92;
    border-radius: 4px;
    -webkit-appearance: none;
    box-sizing: border-box;
    width: 100%;
    height: 50px;
    font-size: 1.25em;
    color: #353538;
    font-weight: 600;
    font-family: inherit;
    transition: box-shadow .2s linear, border-color .25s ease-out;
}

form input[type='email']:focus, form input[type="text"]:focus, form input[type='password']:focus {
    outline: none;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    border: solid 2px #4eb8dd;
}

form input[type='email'], form input[type="text"] {
    padding: 10px 10px 0px;
}

form button {
    display: block;
    margin: 0;
    background-color: #4eb8dd;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: none;
    width: 100%;
    height: 65px;
    font-size: 20px;
    color: #FFF;
    font-weight: 600;
    font-family: inherit;
    transition: background-color .2s ease-out;
    cursor: pointer;
    background: linear-gradient(45deg,#8e24aa,#ff6e40);
    outline: none;
}

form button:hover, form button:active {
    background-color: #217093;
}

form .inputGroup1 .helper {
    position: absolute;
    z-index: 1;
    font-family: inherit;
}

form .inputGroup1 .helper1 {
    top: 5px;
    left: -10px;
    -webkit-transform: translate(1.4em, 2.6em) scale(1);
    transform: translate(1.4em, 2.6em) scale(1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    color: #217093;
    font-weight: 400;
    opacity: .65;
    pointer-events: none;
    transition: opacity .2s linear, -webkit-transform .2s ease-out;
    transition: transform .2s ease-out, opacity .2s linear;
    transition: transform .2s ease-out, opacity .2s linear, -webkit-transform .2s ease-out;
}

form .inputGroup1.focusWithText .helper {
    /*input[type='email']:focus + .helper {*/
    -webkit-transform: translate(1.4em, 2em) scale(0.65);
    transform: translate(1.4em, 2em) scale(0.65);
    opacity: 1;
    font-size: 1.2em;
    top: 0;
    left: -12px;
}

/*alert error*/
.alert {
    padding: 5px 20px;
    color: #fff;
    background-color: #e65e57;
    border-color: #ec6151;
    border-radius: 3px;
    margin-top: 5px;
}

.closebtn {
    margin-left: 15px;
    color: #fff;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}
@media only screen and (max-width: 768px) {
    form{
        max-width: 360px;
    }

}