/* CSS Document */

html {
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
}

.container{
	max-width:1000px;
	margin:auto;
}

body {
  margin: 0;
  padding: 0;
  font-family: Roboto, Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #222;
}

ul, li{
  list-style: none;
  padding: 0;
  margin:0;
}

figure img{
  max-width: 100%;
}

a{
  text-decoration: none;
  color: #222;
}

/* Dành cho điện thoại */
@media all and (min-width: 320px) {
	section .main{
    background: -webkit-gradient(linear, left bottom, left top, from(#fbc2eb), to(#a18cd1));
    background: -webkit-linear-gradient(bottom, #fbc2eb 0%, #a18cd1 100%);
    background: -moz-linear-gradient(bottom, #fbc2eb 0%, #a18cd1 100%);
    background: -o-linear-gradient(bottom, #fbc2eb 0%, #a18cd1 100%);
    background: linear-gradient(to top, #fbc2eb 0%, #a18cd1 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  section .formInput{
    padding:25px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    margin:35px;
    align-items: center;
  }

  section .formInput li{
    display: flex;
    align-items: center;
    margin:10px 0;
    border-bottom:1px solid #e5e5e5;
  }

  section .formInput li.title{
    border-bottom: none;
  }

  section .formInput li.title h1{
    margin:5px 0;
  }

  section .formInput li i{
    width: 20px;
    text-align: center;
  }

  section .formInput li input{
    width: 100%;
    box-sizing: border-box;
    line-height: 28px;
    text-indent: 5px;
    border:none;
    outline: none;
  }

  section .formInput li .btnRegister{
    background: #57b846;
    color: #fff;
    padding: 10px;
    width: 130px;
    text-align: center;
    border-radius: 3px;
    margin-top: 10px;
    cursor: pointer;
  }

  section .formInput li .btnRegister:hover{
    background: #4dae3c;
  }

  section .info{
    text-align: center;
  }

  section .info a{
    text-decoration: underline;
    color: #6dabe4;
    font-weight: bold;
  }

  section .formInput li.link{
    border-bottom: none;
    margin-top: 20px;
    font-size: 13px;
  }

  section .formInput li.link a{
    text-decoration: underline;
    color: #333;
    font-weight: bold;
  }

}
 
/* Dành cho máy tính bảng chiều dọc */
@media all and (min-width: 600px) {
	
}
 
/* Dành cho máy tính bảng chiều ngang */
@media all and (min-width: 1024px) {
  section .formInput{
     flex-direction: row;
  }

  section .formInput{
    padding:50px;
  }

  section .formInput li input{
    width: 250px;
  }
}
 
/* Dành cho màn hình desktop */
@media all and (min-width: 1280px) {
	
}