﻿select {

border: 1px solid #CCCCCC;
padding: 2px 8px;
border-radius: 3px



}


input[type="text"], textarea{

width: 280px;
border-radius: 3px



}


input[type="radio"]{
 -webkit-appearance: none;
 width: 15px; 
 height: 15px;
 border-radius: 3px;
 position: relative;
 top: 2px;
 border: 3px solid #D7DCDE;
 background: none;
 padding: 0;
 margin-right: 5px;
  cursor: pointer


}

input[type="radio"]:checked{


 border: 3px solid #3498DB


}

input[type="radio"]:checked::after{
content: "";
position: absolute;
width: 5px;
height: 5px; 
background-color: #3498DB;
top: 2px;
left: 2px;
border-radius: 1px


}

label{
 margin-right: 10px;
 cursor: pointer


}