﻿/* Sticky footer styles

-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
}

.fullcontainer
{
    height : 100%;
}

.homecontainer {
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 380px;
    padding: 0px;
    margin: auto;
    background: white;
}

.forms {
    background: #fff;
    box-shadow: 0 0 3px #000;
    margin: 0 auto;
    max-width: 500px;
    overflow: hidden;
    position: relative;
    padding: 0;
}

    .forms h1 {
        padding: 0 0 20px 0;
        font-size: 26px;
        color: #666;
        font-weight: lighter;
        text-align: center;
    }

    .forms form {
        padding: 10px;
    }

#signup {
    display: none;
}

.forms .tab-group {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .forms .tab-group:after {
        content: "";
        display: table;
        clear: both;
    }

    .forms .tab-group li a {
        display: block;
        text-decoration: none;
        padding: 15px;
        background: #e5e6e7;
        color: #888;
        font-size: 14px;
        float: left;
        
        text-align: center;
        border-top: 3px solid transparent;
        -moz-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

        .forms .tab-group li a:hover {
            background: #dedfdf;
            color: #666;
        }

    .forms .tab-group .active a {
        background: #fff;
        color: #444;
        border-top: 3px solid #73cf41;
    }
