body {
    margin: 0;
    background: #e9e9e9;
    color: #666666;
    font-family: 'RobotoDraft', 'Roboto', sans-serif;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /*background: url(../images/login-bg.jpg);*/
    background-size: cover;
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
}

.login-logo {
    width: 100px;
}

/* Pen Title */
.pen-title {
    padding: 50px 0 30px;
    text-align: center;
    letter-spacing: 2px;
}

.pen-title h1 {
    margin: 0 0 20px;
    font-size: 48px;
    font-weight: 300;
}

.pen-title span {
    font-size: 12px;
}

.pen-title span .fa {
    color: #00ba00;
}

.pen-title span a {
    color: #00ba00;
    font-weight: 600;
    text-decoration: none;
}

/* Form Module */
.form-module {
    position: relative;
    background: rgba(0, 52, 0, 0.82);
    max-width: 320px;
    width: 100%;
    border-top: 5px solid #00ba00;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
}

.form-module .toggle {
    cursor: pointer;
    position: absolute;
    top: -0;
    right: -0;
    background: #00ba00;
    width: 30px;
    height: 30px;
    margin: -5px 0 0;
    color: #ffffff;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
}

.form-module .toggle .tooltip {
    position: absolute;
    top: 5px;
    right: -65px;
    display: block;
    background: rgba(0, 0, 0, 0.6);
    width: auto;
    padding: 5px;
    font-size: 10px;
    line-height: 1;
    text-transform: uppercase;
}

.form-module .toggle .tooltip:before {
    content: '';
    position: absolute;
    top: 5px;
    left: -5px;
    display: block;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid rgba(0, 0, 0, 0.6);
}

.form-module .form {
    padding: 40px;
}

.form-module .form:nth-child(2) {
    display: block;
}

.form-module h2 {
    margin: 0 0 20px;
    color: #ecf0f1;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    text-shadow: 1px 1px #000;
}

.form-module input {
    outline: none;
    display: block;
    width: 100%;
    color: #fff;
    border: 1px solid #d9d9d9;
    margin: 0 0 20px;
    padding: 10px 15px;
    box-sizing: border-box;
    font-wieght: 400;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    background: rgba(255, 255, 255, .1);
}

.form-module input:focus {
    border: 1px solid #00ba00;
    color: #fff;
}

.form-module button {
    cursor: pointer;
    background: #00ba00;
    width: 100%;
    border: 0;
    padding: 10px 15px;
    color: #ffffff;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.form-module .btn{
    cursor: pointer;
    background: #00ba00;
    width: 100%;
    border: 0;
    padding: 10px 15px;
    color: #ffffff;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.form-module button:hover {
    background: #009d00;
}

.form-module .cta {
    background: #f2f2f2;
    width: 100%;
    padding: 15px 40px;
    box-sizing: border-box;
    color: #666666;
    font-size: 12px;
    text-align: center;
}

.form-module .cta a {
    color: #333333;
    text-decoration: none;
}

::-webkit-input-placeholder {
    color: #DDD;
}

:-moz-placeholder { /* Firefox 18- */
    color: #DDD;
}

::-moz-placeholder { /* Firefox 19+ */
    color: #DDD;
}

:-ms-input-placeholder {
    color: #DDD;
}

#fa-spiner {
    display: none;
    text-align: center;
    font-size: 24px;
}

.modal {
    top: 50% !important;
    transform: translateY(-50%) !important;
}

#alert-box {
    text-align: center;
}

video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}