/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Dec 25, 2018, 4:07:08 PM
    Author     : acer
*/

.container{
    width: 60%;
    height: 55%;
    background-color: white;
    overflow: visible;
    margin: auto;
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    border: 0.5px solid #aaaaaa;
}

.login_heading{
    margin-left: 12%;
    font-family: Calibri;
}

.login_subheading{
    margin-left: 12%;
    margin-top: -6%;
    margin-bottom: 8%;
    color: #999;
    font-family: Calibri;
}

* {box-sizing: border-box;}


.input-container {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    width: 80%;
    margin-bottom: 6%;
    margin-left: 12%;
}

.icon {
    padding: 10px;
    background: #aaa;
    color: white;
    min-width: 12%;
    text-align: center;
}


.input-field {
    width: 100%;
    padding: 8px;
    outline: none;
}

.input-field:focus {
    border: 2px solid dodgerblue;
}

/* Set a style for the submit button */
.btn {
    background-color: dodgerblue;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 12%;
    margin-top: 1%;
    margin-bottom: 10%;
    opacity: 0.9;
}

.forgotBtn{
    background-color: transparent;
    color: dodgerblue;
    margin-left: 14%;
    border: none;
}

.btn:hover {
    opacity: 1;
}

