﻿body {
    position: relative;
    margin: 0;
    padding: 0;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    color: #333333;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

.container {
    position: fixed;
    left: 0;
    top: 0;
    background-image: url(../Images/CalgaryPhoneVerifyBG.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: blur(8px);
    -webkit-filter: blur(5px);
}

@media screen and (max-width:500px) {
    .container {
        background-image: none;
    }
}

.loader1 {
    border: 5px solid #008fed;
    border-radius: 50%;
    border-top: 5px solid #e6e6e6;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 0.5s linear infinite;
    position: absolute;
    top: 24%;
    left: 105%;
    z-index: 2;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}





.register-container {
    position: relative;
    max-width: 100%;
    min-width: 250px;
    margin: 0 auto;
    padding: 100px 0 0 0;
    z-index: 2;
    animation-name: orleo;
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
    animation-delay: 0s;
    animation-direction: alternate;
    animation-iteration-count: 1;
    animation-fill-mode: none;
    animation-play-state: running;
    opacity: 1;
}

@media screen and (max-width:500px) {
    .register-container {
        padding-top: 0;
    }
}

@keyframes orleo {
    0% {
        left: -100px;
        opacity: 0;
    }


    100% {
        left: 0;
        opacity: 1;
    }
}


.register-container_noAnim {
    position: relative;
    max-width: 100%;
    min-width: 250px;
    margin: 0 auto;
    padding: 100px 0 0 0;
    z-index: 2;
    opacity: 1;
}

@media screen and (max-width:500px) {
    .register-container_noAnim {
        padding-top: 0;
    }
}



.register-home-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 64px;
    height: 64px;
    z-index: 2;
}

    .register-home-page a {
        display: block;
        width: 100%;
        height: 100%;
        background-image: url(../Images/left-arrow-0.svg);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 50%;
    }

        .register-home-page a:hover {
            background-image: url(../Images/left-arrow-1.svg);
        }



.register-cen {
    position: relative;
    width: 500px;
    height: auto;
    background-color: #ffffffef;
    padding: 50px 50px;
    margin: 0 auto !important;
    -moz-box-shadow: 5px 5px 5px rgba(68, 68, 68, 0.2);
    -webkit-box-shadow: 5px 5px 5px rgba(68, 68, 68, 0.2);
    box-shadow: 5px 5px 5px rgba(68, 68, 68, 0.2);
    border: 1px solid rgb(212, 212, 212);
    border-radius: 10px;
}

@media screen and (max-width:500px) {
    .register-cen {
        width: 100%;
        max-height: 100%;
        margin: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }
}


.register-title {
    font-size: 30px;
    text-align: center;
    margin: 0;
    color: #333333;
    font-weight: 700;
}

.page-error {
    font-size: 14px;
    padding: 0;
    margin: 5px 0 0 0;
    text-align: left;
}

.error_txt {
    font-size: 12px;
    color: rgb(245, 67, 54);
}


.text-danger {
    font-size: 12px;
    color: rgb(245, 67, 54);
    margin-left: 15px;
    border: 1px solid rgb(245, 67, 54);
    padding: 0;
    height: 0;
}

.wm {
    color: #5f5f5f;
}

fieldset {
    border: none;
    font-size: 12px;
    padding: 0;
    margin: 0;
}

legend {
    padding: 3px 0;
    margin: 0;
}


.register-email {
    width: 100%;
    height: auto;
    margin-top: 10px;
}

.register-pass {
    margin-top: 10px;
}


.register-phone {
    width: 100%;
}

.register-btn {
    width: 200px;
    margin-top: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.register-other-links {
    margin-top: 25px;
    text-align: center;
    font-size: 14px;
    line-height: 25px;
}

    .register-other-links a {
        color: #008fed;
    }

        .register-other-links a:hover {
            color: #b94e90;
        }



.inputstyle2 {
    width: 200px;
    height: 50px;
    line-height: 50px;
    padding: 0 15px 0 15px;
    background-color: #008fed;
    border: none;
    color: rgb(239, 239, 239);
    font-size: 14px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

    .inputstyle2:hover {
        background-color: #00c3c3;
    }

    .inputstyle2:disabled {
        background-color: #bdbdbd;
    }






.ErrorSpan {
    font-size: 14px;
    color: #e06161;
    text-align: center;
    display: block;
    width: 100%;
    margin-top: 5px;
}












@media screen and (max-width: 500px) {

    .inputstyle2 {
        width: 100%;
    }
}












/*input with animated blue line on focus*/

.text-input {
    overflow: hidden;
    margin-bottom: 0.875em;
}


.bibo {
    display: block;
    text-align: left;
    color: white;
    font-size: 0.875em;
}

.civoInput {
    width: 100%;
    padding: 1em 0 12px;
    padding-left: 0;
    background: none;
    color: #333333;
    font-size: 15px;
    outline: none;
    border: none;
    border: 1px solid #e6e6e6;
    background-color: #ffffff;
    padding-left: 10px;
    border-radius: 10px;
    box-shadow: 3px 3px 15px #00000036;
}

    .civoInput:focus + .separator {
        -webkit-transform: scaleX(1) translateY(-2px);
        -o-transform: scaleX(1) translateY(-2px);
        -moz-transform: scaleX(1) translateY(-2px);
        transform: scaleX(1) translateY(-2px);
        opacity: 1;
    }

.separator {
    margin-left: 10px;
    height: 3px;
    width: calc(100% - 20px);
    background: #68b3ff;
    display: block;
    transform: scaleX(0) translateY(-2px);
    transform-origin: 50%;
    opacity: 0;
    transition: all 0.15s linear;
}

* :focus {
    outline-color: transparent;
    outline-style: none;
}

/*input with animated blue line on focus ENDSSSSSSSSSSSSSSSSSSS*/

