body{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background: #F2F2F2;
  }
  .box{
    width: 300px;
    padding: 40px;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    box-shadow: #666 0px 0px 10px;
    text-align: center;
  }
  .box h1{
    color: rgb(20, 20, 20);
    text-transform: uppercase;
    font-weight: 500;
  }
  .box input[type = "text"],.box input[type = "password"]{
    border:0;
    background: none;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 2px solid #3498db;
    padding: 14px 10px;
    width: 200px;
    outline: none;
    color: black;
    border-radius: 24px;
    transition: 0.25s;
  }
  .box input[type = "text"]:focus,.box input[type = "password"]:focus{
    width: 280px;
    border-color: #2ecc71;
  }
  .box input[type = "text"],.box input[type = "email"]{
    border:0;
    background: none;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 2px solid #3498db;
    padding: 14px 10px;
    width: 200px;
    outline: none;
    color: black;
    border-radius: 24px;
    transition: 0.25s;
  }
  .box input[type = "text"]:focus,.box input[type = "email"]:focus{
    width: 280px;
    border-color: #2ecc71;
  }
  .box button[type = "submit"]{
    border:0;
    background: none;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 2px solid #2ecc71;
    padding: 14px 40px;
    outline: none;
    color: #666;
    border-radius: 24px;
    transition: 0.25s;
    cursor: pointer;
  }
  .box button[type = "submit"]:hover{
    background: #2ecc71;
    color: white;
    font-size: 14px;
    font-weight: 500;
  }
      
  .box .meassage{
      text-transform: uppercase;
      color:#666;
  }
  .box input[type = "text"]:focus,.box input[type = "idcard"]:focus{
    width: 280px;
    border-color: #2ecc71;
  }
  .box input[type = "text"],.box input[type = "idcard"]{
    border:0;
    background: none;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 2px solid #3498db;
    padding: 14px 10px;
    width: 200px;
    outline: none;
    color: black;
    border-radius: 24px;
    transition: 0.25s;
  }.box input[type = "text"]:focus,.box input[type = "phone"]:focus{
    width: 280px;
    border-color: #2ecc71;
  }
  .box input[type = "text"],.box input[type = "phone"]{
    border:0;
    background: none;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 2px solid #3498db;
    padding: 14px 10px;
    width: 200px;
    outline: none;
    color: rgb(14, 13, 13);
    border-radius: 24px;
    transition: 0.25s;
  }
  .checkboxmessage{
      color:#666;
      font-size:18px;
  }
  .tips{
      color:white;
      font-size:12px;
  }

  .copyright{
    position: relative;
    bottom: 20px;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    color: #666;
    text-align: center;
    font-size: 14px;
    width: 100%;
  }
  
  a{
    text-decoration: none;
    color: #666;
  }