* {
  box-sizing: border-box;
}

body {
  background-color: #A50050;
  overflow-y: scroll;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
}

::-webkit-scrollbar { /* WebKit */
    width: 0px;
    height: 0px;
 }

#regForm {
  background-color: #ffffff;
  margin: 100px auto;
  font-family: Raleway;
  padding: 40px;
  width: 70%;
  min-width: 300px;
  background-image: url('images/el-transparent.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media only screen and (max-width: 768px) {
  #regForm{width: 100%;}
}

h1 {
  text-align: center;  
  font-weight: bold;
  color: #A50050;
}

input.code {
  padding: 10px;
  width: 40px;
  font-size: 17px;
  font-family: Raleway;
  border: 1px solid #aaaaaa;
  text-align: center;
  text-transform:uppercase;
}

input, select {
  padding: 10px;
  width: 100%;
  font-size: 17px;
  font-family: Raleway;
  border: 1px solid #aaaaaa;
}

.dotpoint li {
  padding: initial !important;
  width: initial !important;
  font-size: inherit !important;
  font-family: inherit !important;
  border: initial !important;
  background-color: initial !important;
  list-style-type: initial !important;
  list-style-position: initial !important;
  margin-left: initial !important;
}

.dotpoint li:hover {
  background-color: initial !important;
  font-weight: initial !important;
}


li {
  padding: 10px;
  width: 100%;
  font-size: 17px;
  font-family: Raleway;
  border: 1px solid #aaaaaa;
  background-color: white;
  list-style-type: none;
  list-style-position: inside;
  margin-left: -40px;
}

li:hover {
  background-color: lightpink;
  font-weight: bold;
}

.af_footer {
  font-size: 0px;
  padding: 0px;
  color: white;
  border-width: 0px;
}




input:invalid {
  border: 2px solid red;
}

a {
  color: black;
}

select {
  width: auto;
}

/* Mark input boxes that gets an error on validation: */
.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
  display: none;
}

button {
  background-color: #A50050;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  font-family: Raleway;
  cursor: pointer;
}

button:hover {
  opacity: 0.8;
}

#prevBtn {
  background-color: #bbbbbb;
}

/* Make circles that indicate the steps of the form: */
.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;  
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #A50050;
}

.intro {
  text-align: center;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}


fieldset {
    position: absolute;
    border: 5px solid #aaa;
    background: #aaa;
    right: 0px;
    bottom: 0px;
  }
canvas {
    outline: 5px solid #aaa;
    background: #fff;
    width: 100%;
  }
input[type=submit], input[type=reset] {
    font-size: larger;
  }