@font-face {
	font-family: maziar;
	font-style: normal;
	font-weight: 100;
	font-display: swap;
	src: url('fonts/ttfe/Estedad-Thin.ttf') format('ttf'),   
	url('fonts/woff2e/Estedad-Thin.woff2') format('woff2');		
}

@font-face {
	font-family: maziar;
	font-style: normal;
	font-weight: 200;
	font-display: swap;
	src: url('fonts/ttfe/Estedad-ExtraLight.ttf') format('ttf'),   
	url('fonts/woff2e/Estedad-ExtraLight.woff2') format('woff2');	
}

@font-face {
	font-family: maziar;
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: url('fonts/ttfe/Estedad-Light.ttf') format('ttf'),   
	url('fonts/woff2e/Estedad-Light.woff2') format('woff2');	
}

@font-face {
	font-family: maziar;
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('fonts/ttfe/Estedad-Regular.ttf') format('ttf'),   
	url('fonts/woff2e/Estedad-Regular.woff2') format('woff2');		 
}

@font-face {
	font-family: maziar;
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('fonts/ttfe/Estedad-Medium.ttf') format('ttf'),   
	url('fonts/woff2e/Estedad-Medium.woff2') format('woff2');	
}

@font-face {
	font-family: maziar;
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('fonts/ttfe/Estedad-SemiBold.ttf') format('ttf'),   
	url('fonts/woff2e/Estedad-SemiBold.woff2') format('woff2');		 
}

@font-face {
	font-family: maziar;
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('fonts/ttfe/Estedad-Bold.ttf') format('ttf'),   
	url('fonts/woff2e/Estedad-Bold.woff2') format('woff2'); 
}

@font-face {
	font-family: maziar;
	font-style: normal;
	font-weight: 800;
	font-display: swap;
	src: url('fonts/ttfe/Estedad-ExtraBold.ttf') format('ttf'),   
	url('fonts/woff2e/Estedad-ExtraBold.woff2') format('woff2');		 
}

@font-face {
	font-family: maziar;
	font-style: normal;
	font-weight: 900;
	font-display: swap;
	src: url('fonts/ttfe/Estedad-Black.ttf') format('ttf'),   
	url('fonts/woff2e/Estedad-Black.woff2') format('woff2');		 
}

body {
    font-family: maziar, sans-serif;
    background-color: #98d4f3;
    margin: 0;
    padding: 0;
    direction: rtl;
}

.container {
    width: 80%;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	margin-top: 30px;
}

h1 {
    text-align: center;
    color: #333;
	font-weight:800;
	font-size:18px;
}

form {
    display: flex;
    flex-direction: column;
}

input[type="text"],
input[type="email"],
button {
    padding: 10px;
    margin-bottom: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
	font-family:maziar;
}

button {
    background-color: #F90;
    color: white;
    border: none;
    cursor: pointer;
	font-family:maziar;
	font-weight:700;
}

button:hover {
    background-color: #f39200;
}

.hidden {
    display: none;
}

.section {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.section.hidden {
    opacity: 0;
}

.custom-radio {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 14px;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: background-color 0.3s, border-color 0.3s;
	font-weight:400;
}

.custom-radio:hover {
    background-color: #f0f0f0;
}

.custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-btn {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.custom-radio input:checked ~ .radio-btn {
    background-color: #98d4f3;
    box-shadow: 0 0 0 2px #98d4f3 inset;
}

.radio-btn::after {
    content: "";
    position: absolute;
    display: none;
}

.custom-radio input:checked ~ .radio-btn::after {
    display: block;
}

.custom-radio .radio-btn::after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
}

/* انیمیشن چشمک زدن */
@keyframes blink {
    0%, 100% {
        border-color: #98d4f3;
    }
    50% {
        border-color: transparent;
    }
}

.custom-radio.animate {
    animation: blink 0.5s linear 3;
}

#message {
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
}

.talayi{background:#55ab55 !important;}

