@charset "utf-8";

.sfs-registration__main {
	display: flex;
    justify-content: space-around;
    align-items: center;
    margin: auto;
}
.sfs-registration {
	border: 3px solid #EAEAEA;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 200px;
    height: 200px;
    margin-top: 40px;
    margin-bottom: 20px;
    transform:scale(1);
    transition:all 0.3s ease-in-out;
}
.sfs-registration:hover {
	border: 3px solid #FABC07;
	filter:brightness(95%);
	transform:scale(1.05);
}
.sfs-registration span {
	font-size: 20px;
    font-weight: bold;
    margin-top: 5px;
    color: #C4C4C4;
    transition:all 0.3s ease-in-out;
}
.sfs-registration:hover span {
	color: #FABC07;
}
.sfs-registration img {
	width: 40%;
}
.member-registration {
	border: 3px solid #EAEAEA;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 200px;
    height: 200px;
    margin-top: 40px;
    margin-bottom: 20px;
    transform:scale(1);
    transition:all 0.3s ease-in-out;
}
.member-registration:hover {
	border: 3px solid #009B73;
	filter:brightness(95%);
	transform:scale(1.05);
}
.member-registration span {
	font-size: 20px;
    font-weight: bold;
    margin-top: 5px;
    color: #C4C4C4;
    transition:all 0.3s ease-in-out;
}
.member-registration:hover span {
	color: #009B73;
}
.member-registration img {
	width: 40%;
}

@media only screen and (max-width:679px) {
	.sfs-registration {
		width: 150px;
    	height: 150px;
	}
	.member-registration {
		width: 150px;
    	height: 150px;
	}
}