input, textarea {
  display: block;
  font-size: 1.2em;
  padding: 0.25em;
  width: 100%;
  margin-bottom: 1em;
  border-radius: 3px;
  border: 1px solid #BABABA;
}

select {
    display: block;
    font-size: 1.2em;
    padding: 0.25em;
    width: 100%;
    /*margin-left: 30%;*/
    margin-bottom: 1em;
    border-radius: 3px;
    border: 1px solid #BABABA;
}

/*following style from this website https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_switch
It is for input checkbox
*/
.switch {
  display: inline-block;
  height: 24px;
  position: relative;
  width: 50px;
  margin-bottom:-8px;
}

.switch input {
  display:none;
}

.slider {
  background-color: #ccc;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: .4s;
}

.slider:before {
  background-color: #fff;
  bottom: 0px;
  content: "";
  height: 24px;
  left: 0px;
  position: absolute;
  transition: .4s;
  width: 24px;
}

input:checked + .slider {
  background-color:#3c8dbc;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.switch_position {
    width: 20%;
    float: left;
}

.upload_button {
    width: 50%;
}

#signup_form {
    height: 1150px;
}

.cap_lock_text {
    display: none;
    color: red;
}

.form_card {
    padding: 40px;
    max-width: 600px;
    margin: 40px auto;
    border-radius: 4px;
    box-shadow: 0 4px 10px 4px rgba(19, 35, 47, 0.3);
    height: auto;
}

.logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    max-width:30%;
    max-height:30%;
}

.container_card {
    padding: 40px;
    margin: 30px auto;
    border-radius: 4px;
    box-shadow: 0 4px 10px 4px rgba(19, 35, 47, 0.3);
}

.red {
    color: red;
}