/* 
 * Login Page Specific Styles
 * Consolidated from styles.css, responsive.css, font-icon.css and inline styles
 */

/* =========================================
   1. Font Icon Definitions (from font-icon.css)
   ========================================= */
@font-face {
    font-family: "untitled-font-1";
    src: url("../fonts/webzed-font-1.eot");
    src: url("../fonts/webzed-font-1.eot?#iefix") format("embedded-opentype"),
        url("../fonts/webzed-font-1.woff") format("woff"),
        url("../fonts/webzed-font-1.ttf") format("truetype"),
        url("../fonts/webzed-font-1.svg#untitled-font-1") format("svg");
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
    font-family: "untitled-font-1" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-heart:before {
    content: "\67";
}

/* =========================================
   2. Base Styles (from styles.css)
   ========================================= */
html {
    font-size: 100%;
    height: 100%;
    overflow-x: hidden;
    margin: 0px;
    padding: 0px;
    touch-action: manipulation;
}

body {
    font-size: 16px;
    font-family: 'Roboto', serif;
    width: 100%;
    height: 100%;
    margin: 0;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-wrap: break-word;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
span,
li,
img,
button {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.5;
    font-weight: inherit;
}

h1,
h2,
h3 {
    font-family: 'Lobster', cursive;
}

p {
    line-height: 1.6;
    font-size: 1.05em;
    font-weight: 400;
    color: #555;
}

h1 {
    font-size: 5em;
    line-height: 1;
}

h2 {
    font-size: 3.5em;
    line-height: 1.1;
}

h3 {
    font-size: 2.5em;
}

a,
button {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: all .3s;
    line-height: 1;
}

button {
    outline: 0;
    border: 0;
    background: none;
    cursor: pointer;
}

.icon {
    font-size: 1.1em;
    display: inline-block;
    line-height: inherit;
}

/* =========================================
   3. Component Styles (from styles.css)
   ========================================= */

/* Buttons */
.btn {
    padding: 15px 30px;
    border-radius: 1px;
    letter-spacing: 2px;
    border: 1px solid #fd6b9a;
    background: #fd6b9a;
    color: #fff;
    width: 100%;
    /* Added for login page */
}

.btn:hover {
    color: #fd6b9a;
    background: white;
}

/* Utility Classes */
.center-text {
    text-align: center;
}

.display-table {
    display: table;
    height: 100%;
    width: 100%;
}

.display-table-cell {
    display: table-cell;
    vertical-align: middle;
}

/* Input Placeholders */
::-webkit-input-placeholder {
    font-size: .9em;
    letter-spacing: 1px;
    text-align: center;
}

::-moz-placeholder {
    font-size: .9em;
    letter-spacing: 1px;
    text-align: center;
}

:-ms-input-placeholder {
    font-size: .9em;
    letter-spacing: 1px;
    text-align: center;
}

:-moz-placeholder {
    font-size: .9em;
    letter-spacing: 1px;
    text-align: center;
}


/* =========================================
   4. Login Page Specifics
   ========================================= */

.main-slider {
    height: 100vh;
    position: relative;
    z-index: 1;
    background-size: cover;
    color: #fff;
}

.main-slider:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background: rgba(0, 0, 0, .3);
}

.login-box-container {
    padding: 20px;
}

.login-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 4px;
    display: inline-block;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    color: #333;
}

.login-box .title {
    margin-bottom: 20px;
}

.login-box p {
    margin-bottom: 30px;
    color: #666;
}

.login-box .form-control {
    height: 50px;
    border-radius: 1px;
    margin-bottom: 20px;
    text-align: center;
}

.logo-small {
    color: #fd6b9a;
    font-size: 2em;
    margin-bottom: 10px;
    display: inline-block;
}

/* =========================================
   5. Responsive Styles (from responsive.css)
   ========================================= */

@media only screen and (max-width: 992px) {
    h1 {
        font-size: 4em;
    }

    h2 {
        font-size: 3em;
    }

    h3 {
        font-size: 2em;
    }
}

@media only screen and (max-width: 767px) {
    p {
        line-height: 1.4;
    }

    h1 {
        font-size: 3em;
    }

    h2 {
        font-size: 2.5em;
    }

    h3 {
        font-size: 1.8em;
    }

    .section {
        padding: 50px 0 20px;
    }
}

@media only screen and (max-width: 479px) {
    body {
        font-size: 14px;
    }
}