﻿@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

html, body {
    background: #B492A3;
    font-family: 'Poppins', sans-serif;
    padding: 50px; /* From second file */
}

::selection {
    color: #fff;
    background: #B492A3;
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 600px; /* From second file */
    margin: 0 auto; /* From second file */
    padding: 50px; /* From second file, overrides 30px 35px from .container .form if applied globally */
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; /* From second file */
}

.container .form {
    background: #fff;
    padding: 30px 35px;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.container .form form .form-control {
    height: 40px;
    font-size: 15px;
}

.container .form form .forget-pass {
    margin: -15px 0 15px 0;
}

.container .form form .forget-pass a {
    font-size: 15px;
}

.container .form form .button {
    background: #B492A3;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.container .form form .button:hover {
    background: #B492A3;
}

.container .form form .link {
    padding: 5px 0;
}

.container .form form .link a {
    color: #6665ee;
}

.container .login-form form p {
    font-size: 14px;
}

.container .row .alert {
    font-size: 14px;
}

.form-wrapper {
    width: 400px;
    height: 370px;
    position: absolute;
    top: 50%;
    left: 48%;
    margin: -184px 0px 0px -155px;
    background: rgba(224, 121, 2, 0.5);
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0px 1px 0px rgba(0,0,0,0.6), inset 0px 1px 0px rgba(255,255,255,0.04);
}

.form-item {
    width: 100%;
}

h3 {
    font-size: 25px;
    font-weight: 640;
    margin-bottom: 10px;
    color: #e7e7e7;
    padding: 6px;
    font-family: 'sans-serif', 'helvetica';
}

.form-item input {
    border: none;
    background: transparent;
    color: #fff;
    margin-top: 11px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2em;
    height: 49px;
    padding: 0 16px;
    width: 100%;
    padding-left: 55px;
}

input[type=password] {
    background: transparent url("img/pass.jpg") no-repeat;
    background-position: 10px 50%;
}

input[type=text] {
    background: transparent url("img/user.jpg") no-repeat;
    background-position: 10px 50%;
}

.form-item input:focus {
    outline: none;
    border: 1.4px solid #cfecf0;
}

.button-panel {
    margin-bottom: 20px;
    padding-top: 10px;
    width: 100%;
}

.button-panel .button {
    background: #ee2a2a;
    border: none;
    color: #fff;
    cursor: pointer;
    height: 50px;
    font-family: 'helvetica', 'Open Sans', sans-serif;
    font-size: 1.2em;
    text-align: center;
    text-transform: uppercase;
    transition: background 0.6s linear;
    width: 100%;
    margin-top: 10px;
}

.button:hover {
    background: #f0c743;
}

.form-item input, .button-panel .button {
    border-radius: 2px;
}

.form-group {
    margin-bottom: 30px; /* From second file */
}

.logout {
    text-align: center;
    margin-top: 50% !important;
}

.logout a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.logout a:hover {
    color: #cab6bf;
}