
#txtbox, #pswd{
  width : 150px;
  margin: 0;
  box-sizing: border-box;
}

#txtbox, #pswd{
    border-radius: 10px;
}

form{
    margin-left: 30%;
    margin-right: 30%;
    background-color: teal;
}

legend{
    display: none;
}

h1{
    text-align: center;
    font-family: sans-serif;
    color: darkorchid;
}

h4{
    font-family: sans-serif;
}

html{
    background-color: lightblue;
}

#pswd{
    background-color: aqua;
    box-shadow: 10px;
    border: 5px dotted red;
}

#txtbox{
    background-color: aqua;
    box-shadow: inset 2px 2px 2px 0px
}


.chk{
    background-color: aqua;
}




select{
    background-color: aqua;
    color: mediumslateblue;
    height: 50px;
    width: 250px;
    font-weight: 900;
    
}

.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;

}

.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.chk {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}


.container input:checked ~ .chk {
  background-color: aqua;
}

.checkmark:after {
;
  position: absolute;
  display: none;
}

.container input:checked ~ .ck:after {
  display: block;
}


.container .chk:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border-width: 0 3px 3px 0;
}

#radioDiv label{
    font-family:fantasy;
}








