* {
    margin: 0;
    padding: 0;
    line-height: 1;
}

header a {
	text-decoration: none;
}

.h1-contest {
	text-align: center;
	font-size: 24px;
}

.warning {
	text-align: center;
	font-size: 17px;
}

.conform {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: fit-content;
	margin: 0 auto;
	margin-top: 60px;
	font-size: 16px;
	font-weight: 300;



	& fieldset {
		border: 0;
		padding: 10px 15px;
		display: flex;
		justify-content: space-between;
		gap: 30px;
		flex-wrap: wrap;

		& .conform__radio-name {
			width: 100%;
		}

		& label {
			margin-bottom: 0;
		}

		& .conform__field {
			display: flex;
			gap: 10px;
			align-items: flex-end;
			flex-grow: 1;

			& .input__text {
				height: 30px;
				padding: 0 10px;
				border: 0;
				border-bottom: 2px solid #ccc;


				&.input__text-grow {
					flex-grow: 1;
				}
			}
		}

		& .conform__radio-name {
			margin-bottom: 20px;
			font-weight: 600;
		}
	}

	& .button__submit {
		background: linear-gradient(to bottom, #cc3300, #AE1500);
		font-size: 22px;
		color: #fff;
		width: 400px;
		padding: 20px 35px;
		border-radius: 10px;
		border: 0;
		margin: 40px auto;
		cursor: pointer;
		transition: 0.2s;
		max-width: 100%;

		&:hover {
			transform: scale(1.1);
		}
	}
}