body{
    background: RGB(255,255,255);
}

div{
    background: rgb(255,255,255);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 500px;
    margin-left: -150px;
    margin-top: -250px;    
    padding: 30px;
    border: 2px solid rgb(162,162,162);        
}

h3{
    color: rgb(131,150,174);
    text-align: center;
    font-family: "Tahoma", "Arial", "Times New Roman";
    font-size: 17px;
}

form{
    width:250px;
    border: 1px solid rgb(255,255,255);
    margin: 20px;
    padding:5px;
}

label{
    font-size:12px;
    display:block;
    width: 100%;
}

input, textarea{
    margin-bottom: 20px;
    width: 100%;
    padding: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #ccc;
}

input:focus, textarea:focus{
    border: 1px solid #1668C4;
}

input[type="submit"] {
    margin-bottom:0;
    background: #1668C4;
    color: #fff;
    border: none;
}

input[type="submit"]:hover{
    background: #4A88F4;
    cursor: pointer;
}

img{
    width: 200px;
    margin: auto;
    display: block;
}