form {
	display: flex;
 	justify-content: center;
    text-align: center;
    align-items: center;

    width: 100%;
    min-width: 300px;
}

input[type='radio'] {
    accent-color: #12451D;
    margin: 0; 
}

legend {
    font-size: 12px;
}

textarea {
	width: 80%;
    margin: 10px 10%;
	box-sizing: border-box;
    
}

.radio-group {
    display: flex;
    align-items: center;

    /* border-color: #12451D;
    border-style: solid; */
    margin: 10px auto;
}

.radio-item {
    display: flex;
    align-items: center;
    margin-right: 50px;
    

}

.radio-item:last-child {
    margin-right: 0;
}

@media screen and ( max-width:996px )
{

    textarea {
        min-height: 100px;
    }
}

button {
    max-width: 200;
    border-radius: 10px;
    background-color: #681C1C;
	color: #FFFFFF;
	padding: 20px;
    border-style: solid;
    border-color: #681C1C;
    margin: 10px;
}

button:hover {
    background-color: #FFFFFF;
	color: #681C1C;
    border-style: solid;
    border-color: #681C1C;
}

button:disabled {
    background-color: #FFFFFF;
	color: #681C1C;
    border-style: solid;
    border-color: #681C1C;
}
    
