/* Profile */

fieldset > table img {
	width: 300px;
	height: 300px;
	object-fit: cover;
	border-radius: 150px;
}

@media only screen and (max-width: 420px) {
	fieldset > table td {
		display: block;
		text-align: center;
		width: 100%;
	}
	
	fieldset > table td:first-child {
		margin-bottom: 16px
	}
	
	fieldset > table img {
		width: 250px;
		height: 250px;
	}
}

/* Register */

#captcha_img {
    width: unset;
    height: unset;
    object-fit: unset;
    border-radius: unset;
}

#registration_form fieldset > table td {
    display: table-cell;
    text-align: left;
    width: unset;
}

#registration_form select[name="dstcorrection"] {
	max-width: 82vw;
}

@media only screen and (max-width: 700px) {
	#registration_form td[width="50%"] {
		width: 100%;
		box-sizing: border-box;
		display: block;
	}
}