﻿html {
    font-size: 62.5%; /* This sets the default font-size to 10px for easy calculation */
}

@media (min-width: 1200px) {
    html {
        font-size: 70%; /* 1rem = 7px on large screens */
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    html {
        font-size: 65%; /* 1rem = 6.5px on medium screens */
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    html {
        font-size: 60%; /* 1rem = 6px on small screens */
    }
}

@media (max-width: 767px) {
    html {
        font-size: 55%; /* 1rem = 5.5px on extra small screens */
    }
}

.responsive-text {
    font-size: 2.1rem; /* This will be 16px on the default screen size */
    font-family: 'B Nazanin';
}

.responsive-text1 {
    font-size: 2.9rem; /* This will be 16px on the default screen size */
    font-family: 'B Nazanin';
}

.responsive-text2 {
    font-size: 2.9rem; /* This will be 16px on the default screen size */
    font-family: 'B Nazanin';
}

.centered-header {
    text-align: center;
}

.rtl-table {
    direction: rtl;
}


body {
}

    input[type=text]:focus {
        background-color: #fff;
        border-bottom: 5px solid #5fbae9;
    }

    input[type=text]:placeholder{
        color: #cccccc;
    }
.label {
    color: #2f2d2d;
    padding: 25px;
    font-family: 'B Nazanin';
    font-size: 2rem;
    font-style: normal;
}

.success {
    background-color: #04AA6D;
}
/* Green */
.info {
    background-color: #2196F3;
}
/* Blue */
.warning {
    background-color: #ff9800;
}
/* Orange */
.danger {
    background-color: #f44336;
}
/* Red */
.other {
    background-color: #e7e7e7;
    color: black;
}
/* Gray */




.button {
    background-color: #2f2d2d; /* Green */
    border: none;
    color: white;
    padding: 15px ;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-family: 'B Arabic Style' Nazanin;
    font-size: 25px;
    color:white;
    margin: 20px ;
    cursor: pointer;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    border-radius: 8px;

}

.button1 {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.button2:hover {
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}



input[type=text] {
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 8px 0px;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 5px;
    width: 85%;
    height: 30%;
    border: 5px solid #f6f6f6;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

    input[type=text]:focus {
        background-color: #fff;
        border-bottom: 5px solid #5fbae9;
    }

    input[type=text]:placeholder {
        color: #cccccc;
    }
.labelerroeandsuccess {
    padding-top: 50px;
    padding-bottom: 10px;
    margin: 30px 0px;
}
p1 {
    padding-left:0%;
    padding-top:30%;
    font-size: 20px;
    font-family:Tahoma;
}


