@import url(https://fonts.googleapis.com/css?family=Roboto:300);


  /* Default style for desktop */
  .scale-checkbox {
    transform: scale(2);
}
@media (max-width: 768px) {
  .columns-container {
    flex-direction: column;
  }
}

.columns-container {
  display: flex;
  justify-content: space-between; /* This will space out the columns evenly */
}

.columns-container > div {
  flex: 1; /* This makes each child div take up equal width */
  padding: 10px; /* Optional: Adds some spacing inside each column */
}


form input[type = "checkbox"] {
  width: 10%;
  padding: 10px;
  border: 10px solid #f10000;
  border-radius: 5px;
  box-sizing: border-box;
  cursor: pointer;
}

.login-page {
  width: 360px;
  padding: 8% 0 0;
  margin: auto;
}

#top-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }

  .responsive-image {
    width: 50%;
    height: auto;
    margin-left: 25%;
    margin-right: 25%;    
  }



.form {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  max-width: 600px;
  max-width: 90%;

  margin: 0 auto 100px;
  padding: 45px;
  padding-left: 45px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.form [type = "text"]
{
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form [type="submit"] {
    width: 100%;
    background-color: #135ac9;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.form-group [type="button"]
{
  width: 50%;
  background-color: #135ac9;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.form-group [type="small-button"]
{
  width: 25%;
  background-color: #135ac9;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#submit-blue {
  background-color: #3498db;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group textarea,
.form-group select {
    width: 90%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form input[type="text"], [type = "email"], .form input[type = "password"] {
  width: 90%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-group textarea {
    width: 90%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form input {
  font-family: "Roboto", sans-serif;
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}

.form-group [type="submit"] {
    background-color: #135ac9;
    color: white;
    width: 100%;
    padding: 10px 20px; 
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.form-group button[type="submit"]:hover {
    background-color: #135ac9 ;
}
.form button:hover,.form button:active,.form button:focus {
  background: #135ac9 ;
}
.form .message {
  margin: 15px 0 0;
  color: #b3b3b3;
  font-size: 12px;
}
.form .message a {
  color: #4CAF50;
  text-decoration: none;
}
.form-group {
    margin-bottom: 20px;
    width: 100%;
}
.form .register-form {
  display: none;
}
.container {
    width : 95%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 0 auto;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.container:before, .container:after {
  content: "";
  display: block;
  clear: both;
}
.container:before, .container:after {
  content: "";
}

/* Do not constrain site navbar or mobile menu containers */
nav .container {
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: block !important;
}
nav .container:before,
nav .container:after {
  content: none !important;
}

#mobile-menu .container {
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: block !important;
}
#mobile-menu .container:before,
#mobile-menu .container:after {
  content: none !important;
}
.container .info {
  margin: 50px auto;
  text-align: center;
}
.container .info h1 {
  margin: 0 0 15px;
  padding: 0;
  font-size: 36px;
  font-weight: 300;
  color: #1a1a1a;
}
.container .info span {
  color: #4d4d4d;
  font-size: 12px;
}
.container .info span a {
  color: #000000;
  text-decoration: none;
}
.container .info span .fa {
  color: #EF3B3A;
}
body.form-page {
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  padding: 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.form wide-button {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  outline: 0;
  background: #4CAF50;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
}
.form wide-button:hover,.form wide-button:active,.form wide-button:focus {
  background: #43A047;
}