.captcha-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 15px;
}

.mainCaptcha{
	position: relative;
    width: 98%;
	margin: auto;
	padding: 5px;
    user-select: none;
	text-align: center;
    font-weight: bold;
}

.refresh{
	position:relative;
	width:30px;
	height:50px;
  background-color: transparent;
  outline: none;
  background-image: url('/assets/images/refresh.png');
  border : 0;
  background-repeat: no-repeat;
  display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    cursor: pointer;
}

.validateCaptcha-input, .validateCaptcha-btn{
	position: relative;
    padding: 5px 8px;
	font-size: 16px;
}
.validateCaptcha-input {
	border: 1px solid #ccc;
    width: 100%;
}
.validateCaptcha-input::-moz-placeholder {
    font-size: 14px;
    text-align: center;
}
.validateCaptcha-input:-moz-placeholder {
    font-size: 14px;
    text-align: center;
}
.validateCaptcha-input:-ms-input-placeholder {
    font-size: 14px;
    text-align: center;
}

.validateCaptcha-input::-webkit-input-placeholder {
    font-size: 14px;
    text-align: center;
}

.validateCaptcha-btn{
    background: #0c78a5;
    border: 1px solid #0c78a5;
	color: #fff;
	 cursor: pointer;
}

.validateCaptcha-warp {
    display: flex;
    width: 100%;
    flex-direction: column;
}
.captcha-text-wrap {
    position: relative;
    display: inline-flex;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}
.validateCaptcha-input:focus {
    outline: 0;
    box-shadow: none;
}

#txtcaptcha-error {
    
    top: 100%;
    font-size: 12px;
    line-height: 14px;
    left: 30px;
    color: red;
}