﻿
* {
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
    background: linear-gradient(to right, rgba(13, 178, 222, 0.2), rgba(0, 91, 234, 0.2)), url('../img/register.png');
}

body {
    padding-top: 50px;
    direction: rtl;
}

a, a:hover, a:focus {
    text-decoration: none;
}

#msform {
    width: 50%;
    margin: 50px auto;
    text-align: center;
    position: relative;
}

    #msform fieldset {
        background: white;
        border: 0 none;
        border-radius: 3px;
        box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
        padding: 20px 30px;
        box-sizing: border-box;
        width: 80%;
        margin: 0 10%;
        position: absolute;
    }

        #msform fieldset:not(:first-of-type) {
            display: none;
        }

        #msform fieldset > input {
            outline: none;
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 3px;
            margin-bottom: 10px;
            width: 100%;
            box-sizing: border-box;
            color: #2C3E50;
            font-size: 13px;
        }

    #msform label {
        display: block;
        text-align: right;
        clear: both;
        margin-bottom: 20px;
    }

    #msform .action-button {
        width: 150px;
        font-weight: bold;
        border: 0 none;
        border-radius: 1px;
        cursor: pointer;
        padding: 10px 5px;
        margin: 10px 5px;
    }

.fs-title {
    font-size: 15px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.clr-picker {
    display: none;
}

@media (max-width: 767px) {
    #msform {
        width: 98%
    }

        #msform fieldset {
            width: 90%;
            margin: 0 5%
        }
}


.page-loading, body > .alert, #lockscreen {
    z-index: 99999999999;
}


/* Page loading material */
.page-loading {
    //display: none;
    position: fixed;
    color: #fff;
    right: 0px;
    left: 0px;
    top: 0px;
    bottom: 0px;
    padding-top: 25%;
    text-align: center;
}

    .page-loading:after {
        display: block;
        content: 'در حال بارگذاری';
    }

.circular {
    width: 50px;
    height: 50px;
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
}
@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.path {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
    -webkit-animation: dash 1.5s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
    stroke: #fff;
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -124;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -124;
    }
}
