﻿/****************************************************************************************************/
/************************************    AUTH LAYOUT    *********************************************/
/****************************************************************************************************/
body {
    background: linear-gradient(to bottom right, #5D67ED, #46D7EA);
    color: #666666;
    font-family: 'RobotoDraft', 'Roboto', sans-serif;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: #FFFFFF !important;
}


.login-form {
    border: 1px solid #214095;
    border-top: 5px solid #214095;
}

.auth-logo {
    width: 300px;
}

.form-title {
    padding-top: 40px;
    padding-bottom: 0px;
}


/****************************
		 2. FORM TITLE 
*****************************/
.form-title {
    padding: 30px 0;
    text-align: center;
    letter-spacing: 2px;
    color: #fff;
}

    .form-title h1 {
        margin: 0 0 20px;
        font-size: 48px;
        font-weight: 300;
    }

    .form-title span {
        font-size: 12px;
    }

        .form-title span .fa {
            color: #214095;
        }

        .form-title span a {
            color: #214095;
            font-weight: 600;
            text-decoration: none;
        }


/****************************
		 3. LOGIN FORM  
*****************************/
.login-form {
    position: relative;
    background: #ffffff;
    max-width: 320px;
    width: 310px;
    border-top: 5px solid #214095;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
}

    .login-form .toggle {
        cursor: pointer;
        position: absolute;
        top: -0;
        right: -0;
        background: #214095;
        width: 30px;
        height: 30px;
        margin: -5px 0 0;
        color: #ffffff;
        font-size: 12px;
        line-height: 30px;
        text-align: center;
    }

    .login-form .form {
        display: none;
        padding: 40px;
    }

        .login-form .form:nth-child(2) {
            display: block;
        }

.reset {
    display: none;
}

.login-form h2 {
    margin: 0 0 20px;
    color: #214095;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}

.login-form input {
    outline: none;
    display: block;
    width: 100%;
    border: 1px solid #d9d9d9;
    margin: 0 0 20px;
    padding: 10px 15px;
    box-sizing: border-box;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

    .login-form input:focus {
        border: 1px solid #214095;
        color: #333333;
    }

.login-form button {
    cursor: pointer;
    background: #214095;
    width: 100%;
    border: 0;
    padding: 10px 15px;
    color: #ffffff;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

    .login-form button:hover {
        background: #214095;
    }

.login-form .forgetPassword {
    width: 100%;
    padding-top: 10px;
    box-sizing: border-box;
    color: #666666;
    font-size: 12px;
    text-align: center;
}

    .login-form .forgetPassword a {
        color: #333333;
        text-decoration: none;
    }


/****************************
		 4. CUSTOM CHECKBOX 
*****************************/
.checkbox {
    padding-left: 20px;
}

    .checkbox label {
        display: inline-block;
        position: relative;
        padding-left: 5px;
    }

        .checkbox label::before {
            content: "";
            display: inline-block;
            position: absolute;
            width: 17px;
            height: 17px;
            left: 0;
            margin-left: -20px;
            border: 1px solid #cccccc;
            border-radius: 3px;
            background-color: #fff;
            -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
            -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
            transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
        }

        .checkbox label::after {
            display: inline-block;
            position: absolute;
            width: 16px;
            height: 16px;
            left: 0;
            top: 0;
            margin-left: -20px;
            padding-left: 3px;
            padding-top: 1px;
            font-size: 11px;
            color: #555555;
        }

    .checkbox input[type="checkbox"] {
        opacity: 0;
    }

        .checkbox input[type="checkbox"]:focus + label::before {
            outline: thin;
            outline: 5px auto -webkit-focus-ring-color;
            outline-offset: -2px;
        }

        .checkbox input[type="checkbox"]:checked + label::after {
            font-family: 'FontAwesome';
            content: "\f00c";
        }

        .checkbox input[type="checkbox"]:disabled + label {
            opacity: 0.65;
        }

            .checkbox input[type="checkbox"]:disabled + label::before {
                background-color: #eeeeee;
                cursor: not-allowed;
            }

    .checkbox.checkbox-inline {
        margin-top: 0;
    }

.checkbox-primary input[type="checkbox"]:checked + label::before {
    background-color: #214095;
    border-color: #33b5e6;
}

.checkbox-primary input[type="checkbox"]:checked + label::after {
    color: #fff;
}

/****************************
		 5. CUSTOM  
*****************************/
.white-color {
    color: #fff;
}

.hide {
    display: none !important;
}

.has-error {
    border: 1px solid #fc0202 !important;
}