.error-message {
    color: red;
    font-size: 12px;
    /*margin-left: 10px;*/
    margin-bottom:20px;
    display: block;
}

.success-message{
    margin-top: 20px;
    font-size: 20px;
    color: var(--c-3);
}


.policy-agree {
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.policy-agree input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #FF730F;
    background-color: #fff;
    outline: none;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.policy-agree input[type="checkbox"]:checked {
    background-color: #FF730F;
    border-color: #FF730F;
}

.policy-agree input[type="checkbox"]:checked::after {
	content: "";
	position: absolute;
	left: 4px;
    top: -1px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.policy-agree label {
    margin-left: 8px;
    line-height: 1.4;
}
	.form__title {
		margin-bottom: 20px;
		color: var(--c-3);
	}
