@import "font.css";
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}



body {
    font-family: 'IRANSans', sans-serif;
}

.auth__header {
    padding: 13vh 1rem calc(11vh + 35px);
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    background-color: #f0f0f0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#3280e4), to(#584dc3));
    background-image: linear-gradient(#3280e4, #584dc3);
    background-size: cover;
    background-position: center center;
    position: relative;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

    .auth__header:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
    }

.auth__logo {
    position: relative;
    z-index: 18;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.auth__body {

}

.auth__form {
    min-width: 280px;
    max-width: 340px;
    margin: auto;
    padding: 0 10px;
    position: relative;
    z-index: 9;
}

.auth__form_body {
    padding: 0.7rem 1.5rem 35px;
    border-radius: 0.5rem;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.auth__form_title {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1.2rem;
}

.auth__form_actions {
    text-align: center;
    padding: 0 2rem;
    margin-top: -25px;
}

    .auth__form_actions .btn {
        border-radius: 30px;
        box-shadow: 0 2px 12px rgba(50, 128, 228, 0.5);
    }
.cursor-pointer{
    cursor:pointer !important;
}
.active {
    color: gray !important;
    pointer-events: none !important;
    cursor: not-allowed !important;
    opacity: 0.7;
}
.dir-ltr{
    direction:ltr !important;
}