/*
 Created By Ricorda
*/
/* 
    Created on : Jul 6, 2018, 4:17:21 PM
    Author     : Ricorda
*/

.simple-form {
    width: 100%;
    max-width: 330px;
    padding: 15px;
    margin: auto;
    position: fixed;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
}

.simple-form .checkbox {
    font-weight: 400;
}

.simple-form .form-control {
    position: relative;
    box-sizing: border-box;
    height: auto;
    padding: 10px;
    font-size: 16px;
}

.simple-form .form-control:focus {
    z-index: 2;
}

.simple-form input[type="email"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.simple-form input[type="password"] {
    /*
    margin-bottom: 10px;
    */
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.simple-form input[type="password"] :focus {
    outline-style: none;
    box-shadow: none;
    border-color: transparent;
}

.input-icon {
    padding: 12px;
    background-color: #d8d8e5;
    font-size: 20px;
}

#loginUsername {
    border-top-left-radius: 5px;
}

#loginPassword {
    border-top: 1px solid #eeeeee;
    border-bottom-left-radius: 5px;
}

#requestPasswordIcon {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    margin-bottom: -1px;
}

#forgotPasswordLink {
    margin-top: 10px;
}

#requestPassword {
    border-bottom-right-radius: 5px;
}