        @import "compass/css3";
        
        * {
          box-sizing: border-box;
          margin: 0;
          padding: 0;
        }
        
        html {
          background: #ffffff;
          font-family: Arial, Helvetica, sans-serif;
            overflow: hidden;
        }
        
        
        .login-wrap {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          background: #ffffff;
          width: 350px;
          padding: 15px;
          height: 270px;
        }
        
        h2 {
          text-align: center;
          font-weight: bold;
          font-size: 22px;
          margin-top: 10px;
          color: #34495e;
        }
        
        .form {
          padding-top: 20px;
        }
        
        input[type="text"],
        input[type="password"],
        button {
          width: 80%;
          margin-left: 10%;
          margin-bottom: 10px;
          height: 35px;
          border-radius: 5px;
          outline: 0;
          -moz-outline-style: none;
        }
        
        input[type="text"],
        input[type="password"] {
          border: 1px solid #bbb;
          padding: 0 0 0 10px;
          font-size: 14px;
        }
        
        input[type="text"]:focus,
        input[type="password"]:focus {
          border: 1px solid #3498db;
        }
        
        a {
          text-align: center;
          font-size: 10px;
          color: #3498db;
        }
        
        a p {
          padding-bottom: 10px;
        }
        
        button {
          background: #e74c3c;
          border: none;
          color: white;
          font-size: 15px;
          font-weight: 200;
          cursor: pointer;
          transition: box-shadow 0.4s ease;
          height: 33px;
        }
        
        button:hover {
          box-shadow: 1px 1px 5px #555;
        }
        
        button:active {
          box-shadow: 1px 1px 7px #222;
        }

        .captcha-wrap {
            display: flex;
            align-items: center;
        }

        .captcha-wrap input[type="text"] {
            width: 50%;
            margin-right: 10px; 
        }

        .captcha {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            width: 85px;
            margin: 0px 10px 10px 0px;
            background: antiquewhite;
            padding: 6px;
            border-radius: 5px;
            text-align: center;
            border: 1px solid #d5caca;
        }