@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

body {
    background-color: #DCF0F8;
    font-family: 'Roboto', sans-serif;
}

#captchaBackground {
    height: 220px;
    width: 250px;
    background-color: #004E8C;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#captchaHeading {
    color: black;
}

#captcha {
    height: 80%;
    width: 80%;
    font-size: 30px;
    letter-spacing: 3px;
    margin: auto;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#submitButton {
    margin-top: 2em;
    margin-bottom: 2em;
    background-color: #08e5ff;
    border: 0px;
    font-weight: bold;
}

#refreshButton {
    background-color: #08e5ff;
    border: 0px;
    font-weight: bold;
}

#textBox {
    height: 25px;
}

.incorrectCaptcha {
    color: #FF7777;
}

.correctCaptcha {
    color: #7FFF00;
}

.button {
	position: relative;
	/* left: 2.5%; */
	width: 150px;
	height: 35px;
	font-size: 20px;
  background-color: #4189F7;
  border: solid;
  color: white;
  border-color: green;
  padding: 3px 7px;
  border-radius: 2px; 
  
  border-collapse: collapse;
	border: 3px solid rgb(200,200,200);
	letter-spacing: 1px;
	font-size: 0.9rem;
	text-align: center;
	
} 

.button:active {
  background-color: #3e8e41;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
} 