#login-form {
    width: 100%;
    overflow: visible;
    position: relative;
    display: block;
}

#section-1 {
  float: left;
  width: 50%;
  padding: 20px;
}

#section-2 {
  width: 50%;
  float: right;
  padding: 20px;
}

#section-3 {
  display: block;
  float: left;
  padding: 20px;
  clear: both;
  min-width: 400px;
}

#section-4 {
  display: block;
  clear: both;
  padding: 0 20px 0 20px;
}

#login-form input[type=email], #login-form input[type=password], #login-form input[type=text], #login-form select, #login-form textarea #login-form {

    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 2.5rem;
    margin: 0 0 1.5rem 0;
    padding: 0.5rem;
    border: 1px solid #bbb;
    border-radius: 0;
    background-color: #fefefe;
    box-shadow: inset 0 1px 2px rgb(10 10 10 / 10%);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.5;
    color: #666;
    transition: box-shadow .5s,border-color .25s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}



#login-form input[type=email]:focus, #login-form input[type=password]:focus, #login-form input[type=text]:focus, #login-form select:focus, #login-form textarea:focus
{
    outline: 0;
    border: 1px solid #8a8a8a;
    background-color: #fefefe;
    box-shadow: 0 0 5px #cacaca;
    transition: box-shadow .5s,border-color .25s ease-in-out;
    transition-duration: 0.5s, 0.25s;
    transition-timing-function: ease, ease-in-out;
    transition-delay: 0s, 0s;
    transition-property: box-shadow, border-color;
}

label {
    font-size: 12px;
    text-transform: uppercase;
    color: #666;
    font-weight: bold;
    margin: 8px 0 8px 0;
    padding: 0;
    cursor: default;
    display: block;
}

label.subscribe {
  display: inline;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ccc;
  opacity: 1; /* Firefox */
}

/* with the :focus here, we would show grey when not using the element */
select {
  color: black;
}
/* with the :focus here, we show grey when using the element */
select:focus {
  color: #9e9e9e;
}

option {
  color: black;
}

option:first-of-type {
  color: #9e9e9e;
}

input[type=submit], input[type=reset] {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  line-height: 12px;
  padding: 20px 50px;
  cursor: pointer;
  transition: all .25s ease-out;
  color: #000;
  background-color: white;
  border: 2px solid #000;
  float: right;
  margin: 5px;
}

input[type=submit].sign-in, input[type=reset].sign-in {
  padding: 15px 40px;
}



input[type=submit]:hover, input[type=reset]:hover {
  color: #fff;
  background-color: #f85d13;
  border-color: #f85d13;
}

form .error {
  color: #f85d13;
  font-size: 14px;
  font-weight: bold;
}

form p {
  font-size: 14px;
}