@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.CaptchaCheck{
    text-align: right;
}

.CaptchaCheck input{display: inline-block;float: none;}

#captchaBackground {
    width: 250px;
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0px 0px 10px #46464654;
    border: 1px solid #ccc;
    position: relative;
    padding: 20px;
    font-family: Roboto;
}

#captchaHeading {
    color: white;
}

#captcha {
    width: 100%;
    font-size: 30px;
    letter-spacing: 3px;
    margin: auto;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ccc;
    border: 1px solid #bbb;
}

#CaptchaMain {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    background-color: #46464670;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 9999999999999;
    text-align: center;
    width: 100%;
    height: 100%;
    justify-content: center;
}

#submitButton {
   color: #fff;
   font-size: 0.9em;
   background-color: #464646;
   position: relative;
   webkit-border-radius: 5px;
   -moz-border-radius: 5px;
   border-radius: 5px;
   background-position: 30px;
   cursor: pointer;
   text-align: center;
   height: 40px;
   border: 0px;
   margin: 2px;
   width: 100px;
}

#refreshButton {position: absolute;border: 0px;background-image: url("../img/refresh.png");background-size: 25px;background-repeat: no-repeat;background-position: center;font-size: 0px;width: 40px;height: 40px;top: 84px;right: 21px;background-color: transparent;cursor: pointer;}

#closeButton{
	
position: absolute;
	
border: 0px;
	
width: 20px;
	
height: 20px;
	
top: 0px;
	
right: 0px;
	
background-color: transparent;
	
font-weight: bold;
	
font-size: 14px;
	
text-transform: uppercase;
	
color: #666;
	
cursor: pointer;
}

#textBox {
    position: relative;
    width: 100%;
    margin: 0px;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 0px 0px 10px 10px;
    color: #666;
    font-family: Open Sans;
    background-color: #fff;
    font-size: 14px;
    margin-bottom: 20px;
}

.incorrectCaptcha {
    color: #FF0000;
	margin-top: 10px;
    font-size: 12px;
}

.correctCaptcha {
    color: #7FFF00;
}
