 /* form starting stylings ------------------------------- */
        .group {
            position: relative;
            margin-bottom: 45px;
            width: 50%;
            margin-left: auto;
            margin-right: auto;
        }



        input {
            font-size: 14px;
            padding: 10px 10px 10px 5px;
            display: block;
            width: 300px;
            border: none;
            background-color: #232323;
            border-bottom: 1px solid #757575;
            font-family: 'Nunito', sans-serif;
            color: white;
        }

        input:hover{
            color: #00a8ff;
        }

        button:hover{
            background: #00a8ff;
        }

            input:focus {
                outline: none;
            }

        /* LABEL ======================================= */
        label {
            color: #999;
            font-size: 14px;
            font-weight: normal;
            position: absolute;
            pointer-events: none;
            left: 5px;
            top: 10px;
            transition: 0.2s ease all;
            -moz-transition: 0.2s ease all;
            -webkit-transition: 0.2s ease all;
            font-family: 'Nunito', sans-serif;
        }

        /* active state */
        input:focus ~ label, input:valid ~ label {
            top: -20px;
            font-size: 14px;
            color: #00a8ff;
            font-family: 'Nunito', sans-serif;
        }

        /* BOTTOM BARS ================================= */
        .bar {
            position: relative;
            display: block;
            width: 300px;
        }

        .bar:before, .bar:after {
            content: '';
            height: 2px;
            width: 0;
            bottom: 1px;
            position: absolute;
            background: #00a8ff;
            transition: 0.2s ease all;
            -moz-transition: 0.2s ease all;
            -webkit-transition: 0.2s ease all;
        }

        .bar:before {
            left: 50%;
        }

        .bar:after {
            right: 50%;
        }

        /* active state */
        input:focus ~ .bar:before, input:focus ~ .bar:after {
            width: 50%;
        }

        /* HIGHLIGHTER ================================== */
        .highlight {
            position: absolute;
            height: 60%;
            width: 100px;
            top: 25%;
            left: 0;
            pointer-events: none;
            opacity: 0.5;
        }

        /* active state */
        input:focus ~ .highlight {
            -webkit-animation: inputHighlighter 0.3s ease;
            -moz-animation: inputHighlighter 0.3s ease;
            animation: inputHighlighter 0.3s ease;
        }

        /* ANIMATIONS ================ */
        @-webkit-keyframes inputHighlighter {
            from {
                background: #00a8ff;
            }

            to {
                width: 0;
                background: transparent;
            }
        }

        @-moz-keyframes inputHighlighter {
            from {
                background: #00a8ff;
            }

            to {
                width: 0;
                background: transparent;
            }
        }

        @keyframes inputHighlighter {
            from {
                background: #00a8ff;
            }

            to {
                width: 0;
                background: transparent;
            }
        }
        header {
            padding-top: 3%;
            color: white;
            font-size: 550%;
            background-color: #232323;
            clear: left;
            text-align: center;
            font-family: 'Nunito', sans-serif;
            font-weight: bold;
        }
        body {
            background-color: #232323;
            float:left;
            width:99%;

        }

        .btnRegistration{
            width: 200px;
            height:35px;
            border:none;
            color: white;
            margin-left: auto;
            margin-right: auto;
            background: #191919 url(../images/button_check_white_25.png) no-repeat;
            background-position-x: 10px;
            background-position-y: center;
            font-size: 17px;
            text-align: center;
            font-family: 'Nunito', sans-serif;
        }


        footer {
            color: #232323;
            background-color: black;
            clear: both;
            text-align: center;
            padding: 1em;

        }

        h1 {
            color: #00A8FF;
            text-align: center;
            font-size: xx-large;
        }

        p {
            font-family: 'Nunito', sans-serif;
            font-weight: bold;
            color: white;
            font-size: 20px;
            text-align: center;
        }

        p.user{
            position: relative;
            top:-35px;
            font-family: 'Nunito', sans-serif;
            font-weight: bold;
            color: #00A8FF;
            font-size: 20px;
            text-align: center;
        }


        .buttons-div{
            text-align: center;
            margin-left: auto;
            margin-right: auto;
            width:25%;
            position: center;
            top: -20px;
        }

        p.setUpAccount{
            position:relative; top: -20px; font-family: 'Nunito', sans-serif;
        }

        .validCheck{
            margin-left: 300px;
            margin-top: -15px;
            clear: left;
            float: right;
            display: none;
            max-width: 30px;
            max-height: 30px;
            position: absolute;
        }


