/* Login */
*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.columnsContainer, footer, header {
    position: relative;
    margin: .5em;
}


@media screen and (min-width: 47.5em ) {
    .rightColumn {
        margin-left: 19.5em;
    }

    .leftColumn {
        position: absolute;
        top: 0;
        left: 300px;
        width: 18.75em;
    }
}
/*==========  Mobile First Method  ==========*/


    /* Small Devices, Tablets */
    @media only screen and (min-width : 768px) {
        .rightColumn {
        margin-left: 19.5em;
    }

    .leftColumn {
        position: absolute;
        top: 0;
        left: 100px;
        width: 18.75em;
    }
    }

    /* Medium Devices, Desktops */
    @media only screen and (min-width : 992px) {
            .rightColumn {
        margin-left: 19.5em;
    }

    .leftColumn {
        position: absolute;
        top: 0;
        left: 190px;
        width: 18.75em;
    }
    }

    /* Large Devices, Wide Screens */
    @media only screen and (min-width : 1200px) {
            .rightColumn {
        margin-left: 19.5em;
    }

    .leftColumn {
        position: absolute;
        top: 0;
        left: 300px;
        width: 18.75em;
    }
    }




.login {
    position: relative;
    background: #ffffff;
    max-width: 320px;
    width: 100%;
    border-top: 5px solid #1171ba;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}
    .login .toggle {
        position: absolute;
        top: -0;
        right: -0;
        background: #1171ba;
        width: 20px;
        height: 25px;
        margin: -5px 0 0;
        color: #ffffff;
        font-size: 12px;
        line-height: 30px;
        text-align: center;
    }
.login .form {
  display: none;
  padding: 20px;
}
.login .form:nth-child(2) {
  display: block;
}
.login h2 {
  margin: 0 0 20px;
  color: #6B1E10;  
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.login input {
  outline: none;
  display: block;
  width: 100%;
  border: 1px solid #d9d9d9;
  margin: 0 0 8px;
  padding: 10px 15px;
  box-sizing: border-box;
  font-weight: 400;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.row {   
    margin-left: -15px !important;
    margin-right: -15px !important;   
    color: #6B1E10  !important; 
}
.input {
  outline: none;
  display: block;
  width: 100%;
  border: 1px solid #d9d9d9;
  margin: 0 0 8px;
  padding: 10px 15px;
  box-sizing: border-box;
  font-weight: 400;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.login input:focus {
  border: 1px solid #33b5e5;
  color: #333333;
}
.login button {
  cursor: pointer;
  background: #F69220;
  width: 100%;
  border: 0;
  padding: 10px 15px;
  color: #ffffff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button {
    cursor: pointer;
    background: #1171ba;
    width: 100%;
    border: 0;
    color: #ffffff;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    margin: 0 0 8px !important;
    padding: 10px 15px !important;
    box-sizing: border-box !important;
}
.cta {
  background: #f2f2f2;
  width: 100%;
  padding: 15px 40px;
  box-sizing: border-box;
  color: #6B1E10;
  font-size: 16px;
  text-align: center;
}
