﻿html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 120px;
    margin-top: 0px;
}

.form {
    background-color: #ecf0f1;
    padding: 24px 23px 20px;
    position: relative;
    border-radius: 6px;
}

.page-title {
    font-size: 18px; margin-top: 5px
}

.site.navbar {
    background-color: #1abc9c;
}

.btn-back {
    position: absolute;
    top: 6px;
    left: 10px;
}

.site .navbar-header {
   text-align: center;
}

/* To reset bootstrap Flat-ui theme behavior */
@media (min-width: 768px) 
{
    .site .navbar-header {
        float: none;
    }
}

.site .navbar-brand {
    float: none;
}

.site.navbar-default .navbar-brand, .site.navbar-default .navbar-brand:link {
    color: #fff;
}

.site.navbar-default .navbar-brand:hover, .site.navbar-default .navbar-brand:focus {
    color: #34495e;
    background-color: transparent;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 100px;
    background-color: #f5f5f5;
}

.footer-links {
    margin-top: 20px;
    
}
.footer-link 
{
    text-align: center;
    color: #7F8C8D;
}

.footer-link .icon {
    margin: 0px 5px;
    font-size: 16px;   
}

.footer-links > a {
    font-weight: normal;
}

.footer-links-separator {
    float: left;
}

.copyright
{
    margin-top: 10px;
    text-align: center;
}

/* To fix footer responsive behavior */
@media (max-width: 768px) 
{
    body {
        /* Margin bottom by footer height */
        margin-bottom: 170px;
    }
    
    footer {
        height: 150px;
    }
    
    .footer-links-separator {
        display: none;
    }
}



