﻿

body {
    background: #e9e9e9;
    color: #666666;
    font-family: 'RobotoDraft', 'Roboto', sans-serif;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Pen Title */
.login-title {
    padding: 50px 0;
    text-align: center;
    letter-spacing: 2px;
}

    .login-title h1 {
        margin: 0 0 20px;
        font-size: 48px;
        font-weight: 300;
    }


/* Form Module */
.form-module {
    position: relative;
    background: #ffffff;
    max-width: 320px;
    width: 100%;
    border-top: 5px solid #2A3F54;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

    .form-module .toggle {
        cursor: pointer;
        position: absolute;
        top: -0;
        right: -0;
        background: #2A3F54;
        width: 30px;
        height: 30px;
        margin: -5px 0 0;
        color: #ffffff;
        font-size: 12px;
        line-height: 30px;
        text-align: center;
    }


    .form-module .form {
        display: none;
        padding: 40px;
    }

        .form-module .form:nth-child(2) {
            display: block;
        }

    .form-module h2 {
        margin: 0 0 20px;
        color: #2A3F54;
        font-size: 18px;
        font-weight: 400;
        line-height: 1;
    }

    .form-module input {
        outline: none;
        display: block;
        width: 100%;
        border: 1px solid #d9d9d9;
        margin: 0 0 20px;
        padding: 10px 15px;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        font-wieght: 400;
        -webkit-transition: 0.3s ease;
        -moz-transition: 0.3s ease;
        -o-transition: 0.3s ease;
        transition: 0.3s ease;
    }

        .form-module input:focus {
            border: 1px solid #2A3F54;
            color: #333333;
        }

    .form-module .button {
        cursor: pointer;
        background: #2A3F54;
        width: 100%;
        border: 0;
        padding: 10px 15px;
        color: #ffffff;
        -webkit-transition: 0.3s ease;
        -moz-transition: 0.3s ease;
        -o-transition: 0.3s ease;
        transition: 0.3s ease;
        -webkit-appearance: none;
    }

    .form-module bbutton:hover {
        background: #2A3F54;
    }

    .form-module .forgot-password {
        background: #f2f2f2;
        width: 100%;
        padding: 15px 40px;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        color: #666666;
        font-size: 12px;
        text-align: center;
        cursor:pointer;
    }

        .form-module .forgot-password a {
            color: #333333;
            text-decoration: none;

        }

        .form-module p
        {
            line-height:150%;
        }
