<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Password Protection</title>
<link href="//fonts.googleapis.com/css?family=Roboto:400,700&amp;subset=latin,latin-ext" rel="stylesheet" type="text/css">
<style>
      * {
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
            -ms-box-sizing: border-box;
                box-sizing: border-box;
      }

      body {
        background: #f4f6f6;
        font-family: 'Roboto', sans-serif;
        color: #414546;
      }

      .panel {
        background: #eee;
        padding: 60px;
        border-radius: 6px;
        width: 40em;
        margin: 50px auto;
        max-width: 100%;
      }

      .password-error {
        background: #DA5858;
        color: #553636;
        border: 1px solid #B25B5B;
        padding: 20px;
      }
      .password-error h4 {
        margin: 0;
      }

      label, input, button {
        font-size: 14px;
        font-weight: normal;
        line-height: 20px;
      }

      input, button {
        font-family: "Roboto", sans-serif;
      }

      label {
        display: block;
        margin-bottom: 5px;
      }

      input[type="text"],
      input[type="password"] {
        display: inline-block;
        padding: 10px 12px;
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 20px;
        color: #555555;
        vertical-align: middle;
        -webkit-border-radius: 4px;
           -moz-border-radius: 4px;
                border-radius: 4px;
      }

      input {
        width: 100%;
      }

      textarea {
        height: auto;
      }

      input[type="text"],
      input[type="password"]{
        background-color: #ffffff;
        border: 1px solid #cccccc;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
           -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
                box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
        -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
           -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
             -o-transition: border linear 0.2s, box-shadow linear 0.2s;
                transition: border linear 0.2s, box-shadow linear 0.2s;
      }

      input[type="text"]:focus,
      input[type="password"]:focus{
        border-color: rgba(82, 168, 236, 0.8);
        outline: 0;
        outline: thin dotted \9;
        /* IE6-9 */

        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
           -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
                box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
      }

      input:-moz-placeholder,
      textarea:-moz-placeholder {
        color: #999999;
      }

      input:-ms-input-placeholder,
      textarea:-ms-input-placeholder {
        color: #999999;
      }

      input::-webkit-input-placeholder,
      textarea::-webkit-input-placeholder {
        color: #999999;
      }

      .button {
        background: #9bda58;
        border: 1px solid #86b25b;
        color: #405536;
        padding: 6px 12px;
        border-radius: 5px;
      }
    </style>
</head>
<body>

    <div class="main">
      <div class="panel">
        <div class="header">
          <h1>Password protected site</h1>
        </div>
        <div class="body">
          

          <p class="lead">Please enter your password to get access.</p>

          <form method="post">
            <p class="field">
              <input type="password" name="password" placeholder="Password"></p>
            <p class="field">
              <button class="button">Submit</button>
            </p>
          </form>
        </div>
      </div>
    </div>

  </body>
</html>
