﻿#Pages_Left {
    width: 70%;
    margin: 0 300px 0 0;
}
input[type=text], input[type=email], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
}

/* Style the label to display next to the inputs */
label {
    padding: 12px 12px 12px 0;
    display: inline-block;
}

/* Style the submit button */
input[type=submit], input[type=reset], input[type=button], button, .submit {
    background-color: #ff6a00;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    float: right;
    width: 200px;
    cursor: pointer;
    box-shadow: 0 5px #ccc;
}

    input[type=submit]:hover, input[type=button]:hover ,.submit {
        background-color: #f59d5e;
    }

/*input[type=submit]:active {
                border: 2px solid #555555;
            }*/

input[type=reset],button {
    background-color: #808080;
}

    input[type=reset]:hover ,button:hover{
        background-color: #a29d9d;
    }

.container {
    direction: rtl;
   
    margin: auto auto;
}

.line {
   
    height: 3px;
    background: #ccc;
   
}

.form-section h3 {
    margin: 10px;
}

form .error {
    color: #ff0000;
}

span {
    color: #ff0000;
    padding: 10px;
    font-weight: bold;
    font-size: 14pt;
}

.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
ul{
    list-style :circle;
    list-style-type:circle;
   
}
.otp-msg{
   font-weight:bold;
   color:red;

}
@media only screen and (max-width: 600px) {
    #Pages_Left {
        width: 100%;
        margin: 10px auto;
    }
}     

