/* 
    Created on : 2018-10-30, 13:33:27
    Author     : Piotr
*/

body {
    /* https://www.toptal.com/designers/subtlepatterns/concrete-seamless/ */
    background-image: url("../img/concrete.png");
    font-size: 20px;
}

#container{
    background-color: rgba(255,255,255,0.7); 
/*    opacity: 0.7; */
    width: 300px;
    padding: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    /* https://www.cssmatic.com/box-shadow */
    -webkit-box-shadow: 0px 0px 20px 5px rgba(192,192,192,0.9);
    -moz-box-shadow: 0px 0px 20px 5px rgba(192,192,192,0.9);
    box-shadow: 0px 0px 20px 5px rgba(192,192,192,0.9); 
}

input {
    background-color: rgba(255,255,255,1.0); 
}

input[type=text],
input[type=password]{
    width: 300px;
    background-color: #efefef;
    color: #666;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 20px;
    padding: 10px;
    margin-top: 10px;
    box-sizing: border-box;
    outline: none;
}

input[type=text]:focus,
input[type=password]:focus{
    -webkit-box-shadow: 0px 0px 10px 2px rgba(192,192,192,0.9); 
    -moz-box-shadow: 0px 0px 10px 2px rgba(192,192,192,0.9); 
    box-shadow: 0px 0px 10px 2px rgba(192,192,192,0.9); 
    border: 2px solid #a5cda5;
    background-color: #e9f3e9;
    color: #428c42;
}

input::-moz-placeholder {
    color: #999;
}
input:focus::-moz-placeholder {
    color:#428c42;
}
input::-webkit-input-placeholder {
    color: #999;
}
input:focus::-webkit-input-placeholder {
    color:#428c42;
}
input::-ms-input-placeholder {
    color: #999;
}
input:focus::-ms-input-placeholder {
    color:#428c42;
}

input[type=submit]{
    width: 300px;
    background-color: #36b06c;
    font-size: 20px;
    color: white;
    padding: 15px 10px;
    margin-top: 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    letter-spacing: 2px;
    outline: none;
}

input[type=submit]:focus{
    -webkit-box-shadow: 0px 0px 15px 5px rgba(192,192,192,0.9); 
    -moz-box-shadow: 0px 0px 15px 5px rgba(192,192,192,0.9); 
    box-shadow: 0px 0px 15px 5px rgba(192,192,192,0.9); 
}

input[type=submit]:hover{
    background-color: #37b93d;
}

    
