/* Button */
.button {
    color: rgb(209, 0, 0);
    background-color: rgb(45, 0, 0);
    border: 1px solid whitesmoke;
    border-radius: 3px;
}
.button:hover {
    background-color: rgb(59, 59, 59);
    border: 1px solid white;
}
.button:focus {
    color: rgb(0, 169, 0);
    background-color: rgb(0, 75, 8);
    border: 1px solid white;
    text-decoration: underline;
}

/* Checkbox */
input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: rgba(0, 0, 0, 0.176);
    width: 15px;
    height: 15px;
    border: 2px solid black;
    border-radius: 3px;
    display: grid;
    place-content: center;
}
input[type="checkbox"]::before {
    content: "";
    width: 8px;
    height: 8px;
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    background-color: CanvasText;
}
input[type="checkbox"]:checked::before {
  transform: scale(1);
}

/* Color */
.color {
    appearance: none;
    background: transparent;
    border: none;
    height: 30px;
    width: 30px;
    cursor: pointer; 
}
.color::-webkit-color-swatch {
    border-radius: 50%;
    border: none;
}


.email {
    border: 2px solid gray;
    background-color: rgb(178, 178, 178);
    color: rgb(0, 0, 0);
}
.email:hover {
    background-color: rgb(160, 160, 160);
}

/* File */
.file {
    background-color: rgba(245, 245, 245, 0.225);
    border-radius: 3px;
}
.file:hover {
    background-color: rgb(199, 199, 199);
}

/* Number */
.number {
    border: 2px solid gray;
    background-color: rgb(178, 178, 178);
    color: rgb(0, 0, 0);
    color: rgb(31, 31, 31);
}
.number:hover {
    background-color: rgb(160, 160, 160);
}

/* Password */
.password {
    border: 2px solid gray;
    background-color: rgb(178, 178, 178);
    color: rgb(0, 0, 0);
    color: rgb(31, 31, 31);
}
.password:hover {
    background-color: rgb(160, 160, 160);
}

/* Radio */
input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: rgba(0, 0, 0, 0.176);
    width: 15px;
    height: 15px;
    border: 2px solid black;
    border-radius: 10px;
    display: grid;
    place-content: center;
  }
  input[type="radio"]::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 10px;
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    background-color: CanvasText;
}
input[type="radio"]:checked::before {
    transform: scale(1);
}
  
/* Range */
input[type=range] {
    height: 32px;
    -webkit-appearance: none;
    margin: 10px 0;
    width: 150px;
    background-color: transparent;
}
input[type=range]:focus {
outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 23px;
    cursor: pointer;
    box-shadow: 0px 0px 0px #000000;
    background: #B6B6B6;
    border-radius: 3px;
    border: 1px solid #8A8A8A;
}
input[type=range]::-webkit-slider-thumb {
    box-shadow: 0px 0px 1px #828282;
    border: 1px solid #8A8A8A;
    height: 25px;
    width: 20px;
    border-radius: 2px;
    background: #DADADA;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -2px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
    background: #B6B6B6;
}
input[type=range]::-moz-range-track {
    width: 100%;
    height: 23px;
    cursor: pointer;
    box-shadow: 0px 0px 0px #000000;
    background: #B6B6B6;
    border-radius: 3px;
    border: 1px solid #8A8A8A;
}
input[type=range]::-moz-range-thumb {
    box-shadow: 0px 0px 1px #828282;
    border: 1px solid #8A8A8A;
    height: 25px;
    width: 20px;
    border-radius: 2px;
    background: #DADADA;
    cursor: pointer;
}
input[type=range]::-ms-track {
    width: 100%;
    height: 23px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
}
input[type=range]::-ms-fill-lower {
    background: #B6B6B6;
    border: 1px solid #8A8A8A;
    border-radius: 6px;
    box-shadow: 0px 0px 0px #000000;
}
input[type=range]::-ms-fill-upper {
    background: #B6B6B6;
    border: 1px solid #8A8A8A;
    border-radius: 6px;
    box-shadow: 0px 0px 0px #000000;
}
input[type=range]::-ms-thumb {
    margin-top: 1px;
    box-shadow: 0px 0px 1px #828282;
    border: 1px solid #8A8A8A;
    height: 25px;
    width: 20px;
    border-radius: 2px;
    background: #DADADA;
    cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
    background: #B6B6B6;
}
input[type=range]:focus::-ms-fill-upper {
    background: #B6B6B6;
}

/* Search */
.search {
    border: 2px solid gray;
    background-color: rgb(178, 178, 178);
    color: rgb(0, 0, 0);
}
.search:hover {
    background-color: rgb(160, 160, 160);
}

/* tel */
.tel {
    border: 2px solid gray;
    background-color: rgb(178, 178, 178);
    color: rgb(0, 0, 0);
}
.tel:hover {
    background-color: rgb(160, 160, 160);
}

/* text */
.text {
    border: 2px solid gray;
    background-color: rgb(178, 178, 178);
    color: rgb(0, 0, 0);
}
.text:hover {
    background-color: rgb(160, 160, 160);
}

/* url */
.url {
    border: 2px solid gray;
    background-color: rgb(178, 178, 178);
    color: rgb(0, 0, 0);
}
.url:hover {
    background-color: rgb(160, 160, 160);
}

.one {
    position: relative;
    float: left;
    width: 260px;
}