﻿html, body {
    min-height: 100%
}

body {
    /*background: #f6f6f6 url(https://goo.gl/1yhE3P) top center no-repeat;*/
    background-size: cover;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    margin: 0
}

#box {
    width: 420px;
    margin: 10% auto;
    text-align: center;
    background: rgba(255,255,255,0.6);
    padding: 20px 50px;
    box-sizing: border-box;
    box-shadow: 0 3px 12px rgba(0,0,0,5);
    border-radius: 2%
}

h1 {
    margin-bottom: 0.7em;
    font-size: 28px;
    color: #484548;
    font-weight: 100;
}

    h1 span {
        display: block;
        font-size: 14px;
        color: #000;
    }
.special-msg {
    color: #000;
    font-size: 13px;
}

form p {
    position: relative;
}

.password {
    width: 100%;
    padding: 15px 12px;
    margin-bottom: 5px;
    border: 1px solid #000;
    border-bottom: 1px solid #000;
    background: rgba(255,255,255,0.2) !important;
    color: #555;
}

    .password + .unmask {
        position: absolute;
        right: 5%;
        top: 10px;
        width: 25px;
        height: 25px;
        background: transparent;
        border-radius: 50%;
        cursor: pointer;
        border: none;
        font-family: 'fontawesome';
        font-size: 14px;
        line-height: 24px;
        -webkit-appearance: none;
        outline: none
    }

        .password + .unmask:before {
            content: "\f06e";
            position: absolute;
            top: 0;
            left: 0;
            width: 25px;
            height: 25px;
            background: rgba(205,205,205,0.2);
            z-index: 1;
            color: #aaa;
            border: 2px solid;
            border-radius: 50%;
        }

    .password[type="text"] + .unmask:before {
        content: "\f070";
        background: rgba(105,205,255,0.2);
        color: #06a
    }

#valid {
    font-size: 12px;
    color: #daa;
    height: 15px
}

#strong {
    height: 20px;
    font-size: 12px;
    color: #daa;
    text-transform: capitalize;
    background: rgba(205,205,205,0.1);
    border-radius: 5px;
    overflow: hidden
}

    #strong span {
        display: block;
        box-shadow: 0 0 0 #fff inset;
        height: 100%;
        transition: all 0.8s
    }

    #strong .weak {
        box-shadow: 5em 0 0 #daa inset;
        color: #fff;
    }

    #strong .medium {
        color: #fff;
        box-shadow: 10em 0 0 #da6 inset
    }

    #strong .strong {
        color: #595;
        box-shadow: 50em 0 0 #ada inset
    }

.cp-footer {
    display: none;
}

.form-btn {
    padding: 8px 35px;
    font-size: 14px;
    border-radius: 4px;
    color: #0078a4;
    line-height: 22px;
    background: transparent;
    border: 2px solid #0078a4;
    transition: 0.2s background ease, 0.2s border ease;
    text-transform: uppercase;
    cursor: pointer;
}

    .form-btn:hover {
        color: white;
        background-color: #0078a4;
        cursor: pointer;
    }

.submit-text-container {
    display: block;
}

.submit-btn-txt {
    position: relative;
    transform: rotateX(0deg);
    transform-origin: top;
    display: block;
    transition: 0.2s ease;
}
/*----------AlertifyJS------------*/
.ajs-content {
    text-align: center;
}


.loader {
    position: relative;
    margin: 0 auto;
    width: 30px;
}

    .loader:before {
        content: '';
        display: block;
        padding-top: 100%;
    }

.circular {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    height: 100%;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@-webkit-keyframes color {
    100%, 0% {
        stroke: #d62d20;
    }

    40% {
        stroke: #0057e7;
    }

    66% {
        stroke: #008744;
    }

    80%, 90% {
        stroke: #ffa700;
    }
}

@keyframes color {
    100%, 0% {
        stroke: #d62d20;
    }

    40% {
        stroke: #0057e7;
    }

    66% {
        stroke: #008744;
    }

    80%, 90% {
        stroke: #ffa700;
    }
}

.showbox {
    display: none;
    padding: 5%;
}

.centerItems {
    display: flex;
    align-items: center;
    justify-content: center;
}
