﻿.input-validation-error {
    border: 1px solid #AC004A !important;
}

.field-validation-error {   
    color: #AC004A;
    display: none;
    font-size: 16px;    
}
.field-validation-error {
    display: block;
}
/* Importing fonts from Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Reseting */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #ecf0f3;
}

.wrapper {
    max-width: 350px;
    min-height: 500px;
    margin: 80px auto;
    padding: 40px 30px 30px 30px;
    background-color: #ecf0f3;
    border-radius: 15px;
    box-shadow: 13px 13px 20px #cbced1, -13px -13px 20px #fff;
}

.logo {
    width: 80px;
    margin: auto;
}

    .logo img {
        width: 100%;
        height: 80px;
        object-fit: cover;
        border-radius: 50%;
        box-shadow: 0px 0px 3px #5f5f5f, 0px 0px 0px 5px #ecf0f3, 8px 8px 15px #a7aaa7, -8px -8px 15px #fff;
    }

.wrapper .name {
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 1.3px;
    padding-left: 10px;
    color: #555;
}

.wrapper .form-field input {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    background: none;
    font-size: 1.2rem;
    color: #666;
    padding: 10px 15px 10px 10px;
    /* border: 1px solid red; */
}

.wrapper .form-field {
    padding-left: 10px;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #fff;
}

    .wrapper .form-field .fas {
        color: #555;
    }

.wrapper .btn {
    box-shadow: none;
    width: 100%;
    height: 40px;
    background-color: #03A9F4;
    color: #fff;
    border-radius: 25px;
    box-shadow: 3px 3px 3px #b1b1b1, -3px -3px 3px #fff;
    letter-spacing: 1.3px;
}

    .wrapper .btn:hover {
        background-color: #039BE5;
    }

.wrapper a {
    text-decoration: none;
    font-size: 0.8rem;
    color: #03A9F4;
}

    .wrapper a:hover {
        color: #039BE5;
    }

@media(max-width: 380px) {
    .wrapper {
        margin: 30px 20px;
        padding: 40px 15px 15px 15px;
    }
}
.valid {    
    border: 1px solid #ddd !important;
}

.validation-summary-errors > ul {
    color: #AC004A;
    font-weight: bold;
    list-style: none outside none;
    text-align: center;
    font-weight: normal;
    font-size: 22px;
}
.divider:after,
.divider:before {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee;
}

.h-custom {
    height: calc(100% - 73px);
}

@media (max-width: 450px) {
    .h-custom {
        height: 100%;
    }
}
.sucessmsg
{
     background: none repeat scroll 0 0 #57D740;
     border-radius: 5px;
     color: #FFFFFF;
     opacity: 1;
     min-height: 30px;
     margin-bottom: 5px;
     text-align: center;
     width: 50%;
}

.errormsg
{
     background: none repeat scroll 0 0 #AC004A;
     border-radius: 5px;
     color: #FFFFFF;
     opacity: 1;
     min-height: 30px;
     margin-bottom: 5px;
     text-align: center;
     width: 50%;
}

em{
    color:#ac004a;
    font-weight:bold;
}
#jsoncaptchadiv {
        height: 50px;
        text-align: center;
        width: 180px;
        background: url('/img/cap.png');
        margin-bottom: 10px;
        font-family: cursive;
        font-size: 34px;
        color: #479AD4;
    }

.taken1 {
    border: 1px solid #ac004a !important;
}

.displayorder{
    width: 45px;
    height: 30px;
    padding: 5px;
    background-color: inherit;
    border: none;
}

.displayorder:focus{
    background-color: #fff;
    border: solid 1px #ccc;
}

.displayname{
    background-color: inherit;
    border: none;
    resize:inherit;
    padding: 5px;
}

.displayname:focus{
    background-color: #fff;
    border: solid 1px #ccc;
    resize: both;
    padding: 5px;
}

.textareahidden{
    background-color: inherit;
    border: none;
    resize:inherit;
    padding: 5px;
}

.textareahidden:focus{
    background-color: #fff;
    border: solid 1px #ccc;
    resize: both;
    padding: 5px;
}

.textboxhidden{
    width: 45px;
    height: 30px;
    padding: 5px;
    background-color: inherit;
    border: none;
}

.textboxhidden:focus{
    background-color: #fff;
    border: solid 1px #ccc;
}

.pmscolor{
    background-color: inherit;
    border: none;
    resize:inherit;
    padding: 5px;
}

.pmscolor:focus{
    background-color: #fff;
    border: solid 1px #ccc;
    resize: both;
    padding: 5px;
}


.price{
    height: 30px;
    padding: 5px;
    background-color: inherit;
    border: none;
}

.price:focus{
    background-color: #fff;
    border: solid 1px #ccc;
}


input.valid {    
    border: 1px solid #ddd !important;
}
textarea.valid {    
    border: 1px solid #ddd !important;
}
select.valid {    
    border: 1px solid #ddd !important;
}

input.error {    
    border: 1px solid #AC004A !important;
}
textarea.error {    
    border: 1px solid #AC004A !important;
}
select.error {    
    border: 1px solid #AC004A !important;
}

.error {
    color: #AC004A;
    font-size: 16px;
    font-weight:normal;
}

.ok {
    border: solid 1px #178000;
    background: url(/images/ico_validation.png) no-repeat scroll right -56px #FFFFFF;
}

.cancel {
    border: solid 1px #ff0000;
    background: url(/images/ico_validation.png) no-repeat scroll right 8px #FFFFFF;
}

.spinner {
    border: solid 1px #cccccc;
    background: url(/images/loading.gif) no-repeat scroll right 2px #FFFFFF;
}

.success {
    color: green !important;
    font-size: 16px;
    font-weight: normal;
}

.npad{
    padding: 0;
}


.password .glyphicon {
    right: 10px;
    position: absolute;
    top: 10px;
    cursor:pointer;
}
.modal-header {
    padding: 10px !important;
    border: 1px solid #337ab7 !important;
    background-color: #337ab7 !important;
    color: #fff !important;
}

.modal-content {
    border: none !important;
}
.modal-title {
    font-size: 24px !important;
}
.modelcontent{
    font-size: 16px;
}
.loadingspinner {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}


@media(max-width:990px) {
    #genratepassword{
        margin-top: 10px;
    }
}

