.send-reset-pass-form{
    box-sizing: border-box;
    margin: 0 auto;
    padding: 25px;
    padding-top: 0px;
    background-color:  #FCFCFC;
}


.send-reset-pass-form h1{
    display: inline-block;
    box-sizing: border-box;
    color:  #4c565e;
    font-size: 24px;
    padding: 15px 8px;
    margin:0;
    font-weight: 700;
}


.send-reset-pass-form input{
    position: relative;
    color:  #5f5f5f;
    border: 1px solid #dbdbdb;
    border-radius: 0px;
    width: 100%;
    display: inline;
}

/*
/* Styles for Valid input data */

.send-reset-pass-form .form-valid-data-sign{
    color: #ffffff;
    line-height: 24px;
    text-align: center;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background-color:  #a2cf78;
    float: right;
    display: none;
}

/* Styles for Invalid input data */

.send-reset-pass-form .form-invalid-data{
    margin-bottom: 55px;
}

.send-reset-pass-form .form-invalid-data input{
    border: 1px solid #d37171;
    box-shadow: 2px 3px 4px 0 rgba(200, 77, 77, 0.15);
}

.send-reset-pass-form .form-invalid-data-sign{
    display: none;
    color: #ffffff;
    line-height: 23px;
    font-size: 14px;
    text-align: center;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background-color: #e17c4f;
    float: right;
}

.send-reset-pass-form .form-invalid-data-info{
    display: none;
    position: absolute;
    color: #c84d4d;
    font-weight: normal;
    bottom: -30px;
    left: 183px;
}

.send-reset-pass-form select{
    background-color: #ffffff;
    color:  #5f5f5f;
    box-sizing: border-box;
    max-width: 240px;
    box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.08);
    padding: 12px 18px;
    border: 1px solid #dbdbdb;
}

.send-reset-pass-form .form-checkbox input{
    width:auto;
}

.send-reset-pass-form button{
    display: block;
    border-radius: 2px;
    background-color:  #E4A841;
    color: #FCFCFC;
    font-weight: bold;
    box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.08);
    padding: 14px 22px;
    border: 0;
}

/* Placeholder color */

.send-reset-pass-form ::-webkit-input-placeholder {
    color:  #AAAAAA;
}

.send-reset-pass-form ::-moz-placeholder {
    color:  #AAAAAA;
    opacity: 1;
}

.send-reset-pass-form :-ms-input-placeholder {
    color:  #AAAAAA;
    opacity: 1;
}

.send-reset-pass-form label{
	display:block;
	
}

/*	Making the form responsive. Remove this media query
    if you don't need the form to work on mobile devices. */



@media (max-width: 700px) {

    .send-reset-pass-form{
        margin-top: 0;
        padding: 30px;
        max-width: 480px;
    }

    .send-reset-pass-form .form-row{
        max-width: 300px;
        margin: 25px auto;
        text-align: left;
    }

    .send-reset-pass-form .form-title-row{
        margin-bottom: 50px;
    }

    .send-reset-pass-form h1{
        padding: 0 0 15px 0;
    }

    .send-reset-pass-form label{
        width: 30%;
    }

    .send-reset-pass-form input,
    .send-reset-pass-form select{
        display: inline;
    }

    .send-reset-pass-form .form-valid-data-sign,
    .send-reset-pass-form .form-invalid-data-sign{
        margin-top: 4px;
    }

    .send-reset-pass-form .form-invalid-data{
        margin-bottom: 55px;
    }

    .send-reset-pass-form .form-invalid-data-info{
        left: 0;
    }

    .send-reset-pass-form .form-checkbox span{
        display: inline-block !important;
        width: 100px !important;
    }

    .text-center img {
        width: 60%;
    }

    .col-md-6{
        padding: 0px;
    }

    .send-reset-pass-form button{
        width: 75%;
    }
}

