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

:root{
	--form-control-color:red;
}

body {
	background-color: #f8f9fa;
	font-family: "Aboreto", system-ui;
}
.w-1000 {
		max-width: 1000px;
}
button, input, optgroup, select, textarea {
    cursor: pointer;
}
.appointment-form {
	background-color: #ffffff;
	padding: 40px 20px 0;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	margin-top: 50px;
}

.appointment-form h2 {
	font-size: 28px;
	font-weight: bold;
	color: #6c757d;
	margin-bottom: 30px;
	text-align: center;
}


.appointment-form p {
	font-weight: bold;
	color: #6c757d;
	text-align: center;
}
.div_form{
	gap:15px 0;
}
.radio-button ul{
	list-style: none;
    display: flex;
    gap: 10px;
	padding: 5px 0;
}

select .form-control{
	border-radius: 50px !important;
}

.form-label {
    margin-bottom: 0;
    padding-left: 5px;
}
label{
	cursor: pointer;
}
.form-control {
	border-radius: 20px;
}
.main-form{
	padding:0 30px;
}

.btn-primary {
	background-color: #5a6268;
	border-color: #5a6268;
	border-radius: 20px;
	width: 80%;
	max-width: 450px;
}

.btn-primary:hover {
	background-color: #44494e;
	border-color: #44494e;
}

footer {
	margin-top: 50px;
	text-align: center;
	color: #6c757d;
}

* {
	scroll-behavior: smooth;
}

.toast {
	position: absolute;
	z-index: 999;
	bottom: 10px;
	right: 10px;
}

.side{
	background-color: #6c757d;
	margin-bottom: 7px;
	text-align: center;
}


.logo{
	width: 90%;
}
.body-size label{
    position: relative;
    height: 120px;
    aspect-ratio: 1 / 1;
   
	display: flex;
	cursor: pointer;
	font-weight: 500;
	position: relative;
	overflow: hidden;
	margin-bottom: 0.375em;
}
.body-size img{
	height: 85px;
    aspect-ratio: 1 / 1;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.body-size label span {
	display: flex;
	align-items: flex-start;
	padding: 5px;
	transition: 0.25s ease;
	width: 100%;
	border: solid .2px #cfd4d7;
	line-height: 1;
	border-radius: 10px;
}
.body-size label span:hover {
	background-color: #6c757e2e;
}
.body-size label span:before {
	display: flex;
	flex-shrink: 0;
	content: "";
	background-color: #fff;
	width: 1em;
    height: 1em;
    border-radius: 50%;
    margin-right: 0.5em;
	transition: 0.25s ease;
	box-shadow: inset 0 0 0 0.125em #5a6268;
}

.body-size label input {
	position: absolute;
	left: -9999px;
}
.body-size label input:checked + span {
	background-color: transparent;
	border: solid .2px #5a6268;
}
.body-size label input:checked + span:before {
	box-shadow: inset 0 0 0 .4em #5a6268;
}


.interest.radio-button ul{
	list-style: none;
    display: flex;
    gap: 10px;
    padding: 5px 0;
    flex-wrap: wrap;
}
.interest label span {
	display: flex;
	align-items: flex-start;
	padding: 8px 12px;
	transition: 0.25s ease;
	width: 100%;
	border: solid .2px #cfd4d7;
	line-height: 1;
	border-radius: 10px;
}
.interest label span:hover {
	background-color: #6c757e2e;
}
.interest label span:before {
	display: flex;
	flex-shrink: 0;
	content: "";
	background-color: #fff;
	width: 1em;
    height: 1em;
    border-radius: 50%;
    margin-right: 0.5em;
	transition: 0.25s ease;
	box-shadow: inset 0 0 0 0.125em #5a6268;
}

.interest label span:before {
	display: flex;
	flex-shrink: 0;
	content: "";
	background-color: #fff;
	width: 1em;
    height: 1em;
    border-radius: 50%;
    margin-right: 0.5em;
	transition: 0.25s ease;
	box-shadow: inset 0 0 0 0.125em #5a6268;
}

.interest label input {
	position: absolute;
	left: -9999px;
}
.interest label input:checked + span {
	background-color: transparent;
	border: solid .2px #5a6268;
}
.interest label input:checked + span:before {
	box-shadow: inset 0 0 0 .4em #5a6268;
}

@media (max-width: 768px) {
	.main-form{
		padding:10px;
	}
	.body-size label{
		width: 33.33%;
		height: auto;
	}
	.body-size label span:before {
		margin-right: 0.1em;
	}
	.body-size img{
		height: 65%;
	}
	.body-size label span {
		font-size: .9rem;
		line-height: 1.2;
	}
}