#captcha {
    display: flex;
	flex-direction: column;
    align-items: center;
    
    margin: auto;
	
    width: 200px;
}
	
#captcha-body {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	gap: 15px;
	
	border: 1px solid #D9D9D9;
}

#captcha-text-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 10px;
}
	
#captcha-countdown-container {
	display: flex;
	flex-direction: row;
	
	width: 100%;
}

#captcha-countdown {
	display: flex;
	flex-direction: row;
	justify-content: center;
	
	width: 100%;
	height: 100%;
	
    font-size: 16px;
    color: black;
}

#line-separator {
	border-bottom: 1px solid #0000001f;
}

#captcha-image-container {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	
	width: 100%;
}
		
#captcha-text {
	width: 160px !important;
	height: 30px;
}
	
#captcha-text-submit-btn {
	width: 55px;
}

#captcha-reset-btn {
	width: 55px;
	height: 45px;
}

#captcha-reset-btn-incon {
	width: 100%;
	height: 100%;

	font-size: 22px;
}

#expired-captcha-body {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	gap: 15px;
}

#expired-captcha-reset-btn-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	
	/* lo metto in primo piano in modo che anche avendo sopra l'icona entypo-cancel, questo possa essere cliccato */
	z-index: 1000;
}