body {
  font-family: Verdana, sans-serif;
  font-size: 16px;
}

* {box-sizing: border-box}

/* style the container */
.sign-container {
  position: relative;
  width: 100%;
  background-color: #f2f2f2;
  padding: 20px 0 30px 0;
}

/* style inputs and link buttons */
input,
.btn {
  width: 100%;
  height: 40px;
  padding: 12px;
  border: none;
  border-radius: 0px;
  margin: 5px 0;
  opacity: 0.85;
  display: inline-block;
  font-size: 17px;
  line-height: 20px;
  text-decoration: none; /* remove underline from anchors */
}

input:hover,
.btn:hover {
  opacity: 1;
}

.input-container {
  display: -ms-flexbox;/* IE10 */
  display: flex;
  width: 100%;
}

.icon {
  padding: 10px;
  margin-top: 5px;
  width: 40px;
  height: 40px;
  font-size: 24px;
  text-align: center;
  opacity: 0.85;
  background: #fff;
}

.fb {
  background-color: #3B5998;
  color: white;
}

.google {
  background-color: #dd4b39;
  color: white;
}

.apple {
  background-color: black;
  color: white;
}

.apple:hover {
  color: #ddd;
}

/* style the submit button */
input[type=submit] {
  background-color: #04AA6D;
  color: white;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

/* Two-column layout */
.sign-col {
  float: left;
  width: 50%;
  margin: auto;
  padding: 0 50px;
  margin-top: 6px;
}

.sign-col2 {
  float: left;
  width: 50%;
  margin: auto;
  padding: 0 0px;
  margin-top: 6px;
}

/* Clear floats after the columns */
.sign-row:after {
  content: "";
  display: table;
  clear: both;
}

/* vertical line */
.sign-vl {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  border: 2px solid #ddd;
}

/* text inside the vertical line */
.sign-vl-innertext {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #f1f1f1;
  border: 1px solid #ccc;
  border-radius: 50%;
  padding: 8px 13px;
}

/* hide some text on medium and large screens */
.sign-hide-md-lg {
  display: none;
}

/* bottom container */
.sign-bottom-container {
  width: 100%;
  text-align: center;
  background-color: #555;
  border-radius: 0px 0px 5px 5px;
  margin-top: -10px;
}

/* Responsive layout - when the screen is less than 650px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 992px) {
  .sign-container {
    width: 100%;
  }
  
  .sign-bottom-container {
    width: 100%;
  }

  .sign-col {
    width: 100%;
    margin-top: 0;
  }
  
  .sign-col2 {
    width: 100%;
    margin-top: 0;
  }
  
  /* hide the vertical line */
  .sign-vl {
    display: none;
  }
  
  /* show the hidden text on small screens */
  .sign-hide-md-lg {
    display: block;
    text-align: center;
    margin-top: -30px;
  }
}
