body, html {
	width: 100%;
	margin: 0;
}
* {
	font-family: vazirmatn;
}
.btn {
	padding: 0.5em 1em;
	border-radius: 0.5em;
	text-decoration: none;
	border: none;
	font-size: inherit;
}
.btn-primary {
	color: white;
	background-color: #084eff;
}
.btn-secondary {
	color: #084eff;
	background-color: hsl(223, 100%, 92%);
}
.btn-filled.btn-danger {
	color: #ffffff;
	background-color: hsl(0, 95%, 55%);
}
.btn-naked.btn-danger {
	color: hsl(0, 95%, 50%);
}
.btn-full {
	display: block;
	text-align: center;
}
.input {
	padding: 0.5rem 0;
	width: 100%;
	margin-top: 1.75rem;
	font-size: 1.5rem;
	border: none;
	background-color: rgba(0, 0, 0, 0.05);
	border-bottom: solid 2px #222;
	display: block;
}
.input:focus {
	outline: none;
}
.image-inputs {
	display: flex;
	flex-direction: column;
	/*gap: 2rem;*/
}
.image-input {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
    position: relative;
	width: 75vw;
	background-color: #eee;
    border: 2px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}
.image-input.main {
	aspect-ratio: 9 / 16;
}
.image-input.square {
	aspect-ratio: 1 / 1;
}
.image-input:hover {
	border-color: hsl(220deg 100% 50%);
}

.image-input .explanation {
    color: #000;
    font-size: 14px;
	text-align: center;
	margin: 0 1rem;
	pointer-events: none;
}

.image-input .explanation > .symbol {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	width: 50px;
	height: 50px;
	aspect-ratio: 1 / 1;
	background-color: #fff;
	width: fit-content;
	border-radius: 100%;
}
.image-input img {
    position: absolute;
    top: 0;
    left: 0;
	width: 100%;
	height: 100%;
    opacity: 0;
	z-index: 1;
    cursor: pointer;
}

.image-input input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
	z-index: 2;
    cursor: pointer;
}