* {box-sizing: border-box}

#login {
	position : relative;
	padding : 10px 20px;
}

/* style the container */
.container {
  position: relative;
  border-radius: 5px;
  /*background-color: #f2f2f2;*/
  /*background-color : var(--secondary-light);*/
  padding: 20px 0 30px 0;
}

/* style inputs and link buttons */
input,
.btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 4px;
  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;
  background-color : var(--secondary-dark);
  color: var(--secondary-dark-contrast);
}

/* add appropriate colors to fb, twitter and google buttons */

/* style the submit button */
input[type=submit] {
  /*background-color: #04AA6D;*/
  background-color : var(--primary);
  color: var(--primary-contrast);
  cursor: pointer;
}

input[type=submit]:hover {
  /*background-color: #45a049;*/
  background-color: var(--primary-dark);
  color: var(--primary-dark-contrast);
}



/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* bottom container */
.bottom-container {
  text-align: center;
  background-color : var(--secondary-light);
  color : var(--secondary-contrast);
  border-radius: 0px 0px 4px 4px;
}

.bottom-container a {
	color : var(--secondary-contrast);	
}

/* 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: 650px) {
  .col {
    width: 100%;
    margin-top: 0;
  }
}