/*reset css*/
@import url('http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,300,400,700');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  height: 100%
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*reset css*/



body {
    font: 13px/20px "Open Sans", Tahoma, Verdana, sans-serif;
    color: #fffafa;
    background: #ececeb; /*#C0C0C0*/
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center 0;
}

/* === Form === */
.form {
    width: 100%;
}

.form .field {
    position: relative;
    margin: 0 50px;
}

.form .field i {
    font-size: 14px;
    left: 0px;
    top: 0px;
    position: absolute;
    height: 44px;
    width: 44px;
    color: #f7f3eb;
    background: #676056;
    text-align: center;
    line-height: 44px;
    transition: all 0.3s ease-out;
    pointer-events: none;
}

/* === Logo === */
.logo {
    background-image: url("../images/.png");
    background-repeat: no-repeat;
    background-position: center;
    height: 179px;
    width: 296px;
    margin: 30px auto 20px auto;
}

/* === Login === */
.login {
  position: relative;
  margin: 0 auto;
  width: 370px;
  height: 350px;
  background: white;
  border-radius: 3px;
}
.login img{
  position: absolute;
  padding: 10px 0px 10px 55px;
  width: 32px;
  height: 32px;
  
}

    .login:before {
        content: '';
        position: absolute;
        top: -8px;
        right: -8px;
        bottom: -8px;
        left: -8px;
        z-index: -1;
        background: rgba(64,64,62,0.1); /*rgba(255, 255, 255, 0.1);*/
        border-radius: 4px;
    }

.login h1 {
  line-height: 60px;
  font-size: 15px;
  font-weight: bold;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  background: #00a2d3;

  -webkit-border-top-left-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  -moz-border-radius-topleft: 3px;
  -moz-border-radius-topright: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.login p:first-child {
  margin-top: 20px;
}

.login p.remember {
  float: left;
  margin: 0px  50px;  
}

.login p.remember label {
  color: #a7a599;
  font-size: 12px;
  cursor: pointer;
}
.login p.message {
   text-align: center;
  margin-top: -10px;
}

.login p.submit {
  text-align: center;
}

.login p.forgot {
  float: right;
  margin-right: 50px;
}

.login p.forgot a {
  color: #a7a599;
  font-size: 12px;
  text-decoration: none;
  font-style: italic;
  transition: all 0.3s ease-out;
}

.login p.forgot a:hover {
  color: #f2672e;
}

/* === Input Form === */
::-webkit-input-placeholder {
  color: #808080;
  font-family:'Open Sans', Arial,  sans-serif;
}

:-moz-placeholder {
  color: #ded9cf !important;
  font-family:'Open Sans';
}

.form select{
    width: 270px;
    height: 44px;
    font-family: 'Open Sans',  Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    padding: 10px 15px 10px 55px;
    position: relative;
    border: none;
    background: #f7f3eb;
    color: #777;
    transition: color 0.3s ease-out;
    margin-bottom: 15px;
}
.form input[type=text],
.form input[type=password] {
    font-family: 'Open Sans',  Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    padding: 10px 15px 10px 55px;
    position: relative;
    width: 200px;
    height: 24px;
    color: #676056;
    border: none;
    background: #f7f3eb;
    color: #777;
    transition: color 0.3s ease-out;
}

.form input[type=text] {
    margin-bottom: 15px;
}
.form input[type=password] {
    margin-bottom: 15px;
}
#nghiepvu{
    margin-bottom: 0px;
}
.form select:hover ~i,
.form input[type=text]:hover ~ i,
.form input[type=password]:hover ~ i {
    color: #00a2d3;
}

.form select:focus ~i,
.form input[type=text]:focus ~ i,
.form input[type=password]:focus ~ i {
    color: #00a2d3;
}

.form select:focus,
.form input[type=text]:focus,
.form input[type=password]:focus,
.form button[type=submit]:focus {
    outline: none;
}

.form input[type=submit] {
  margin-top: 15px;
  width: 270px;
  text-align: center;
  font-size: 14px;
  font-family: 'Open Sans',sans-serif;
  font-weight: bold;
  padding: 12px 0;
  letter-spacing: 0;

  -webkit-box-shadow: inset 0px 0px 0px 0px rgba(0,114,188,1);
  -moz-box-shadow:    inset 0px 0px 0px 0px rgba(0,114,188,1);
  box-shadow:         inset 0px 0px 0px 0px rgba(0,114,188,1);

  color: #fff;
  background-color: #00a2d3;
  text-shadow: none;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  position: relative;
  margin-bottom: 15px;
  -webkit-animation: shadowFadeOut 0.4s;
  -moz-animation: shadowFadeOut 0.4s;
}

.form input[type=submit]:hover,input[type=submit]:focus{
  color: #fff;
  -webkit-box-shadow: inset 0px 46px 0px 0px rgba(0,114,188,1);
  -moz-box-shadow:    inset 0px 46px 0px 0px rgba(0,114,188,1);
  box-shadow:         inset 0px 46px 0px 0px rgba(0,114,188,1);
  -webkit-animation: shadowFade 0.4s;
  -moz-animation: shadowFade 0.4s;
}

@keyframes shadowFade {
    0% {
      -webkit-box-shadow: inset 0px 0px 0px 0px rgba(0,114,188,1);
      -moz-box-shadow:    inset 0px 0px 0px 0px rgba(0,114,188,1);
      box-shadow:         inset 0px 0px 0px 0px rgba(0,114,188,1);
      color: #fff;
    }
    100% {
      -webkit-box-shadow: inset 0px 46px 0px 0px rgba(0,114,188,1);
      -moz-box-shadow:    inset 0px 46px 0px 0px rgba(0,114,188,1);
      box-shadow:         inset 0px 46px 0px 0px rgba(0,114,188,1);
      color: #fff;
    }
}

@keyframes shadowFadeOut {
    0% {
      -webkit-box-shadow: inset 0px 46px 0px 0px rgba(0,114,188,1);
      -moz-box-shadow:    inset 0px 46px 0px 0px rgba(0,114,188,1);
      box-shadow:         inset 0px 46px 0px 0px rgba(0,114,188,1);
      color: #fff;
    }
    100% {
      -webkit-box-shadow: inset 0px 0px 0px 0px rgba(0,114,188,1);
      -moz-box-shadow:    inset 0px 0px 0px 0px rgba(0,114,188,1);
      box-shadow:         inset 0px 0px 0px 0px rgba(0,114,188,1);
      color: #fff;
    }
}

@-webkit-keyframes shadowFade {
    0% {
      -webkit-box-shadow: inset 0px 0px 0px 0px rgba(0,114,188,1);
      -moz-box-shadow:    inset 0px 0px 0px 0px rgba(0,114,188,1);
      box-shadow:         inset 0px 0px 0px 0px rgba(0,114,188,1);
      color: #fff;
    }
    100% {
      -webkit-box-shadow: inset 0px 46px 0px 0px rgba(0,114,188,1);
      -moz-box-shadow:    inset 0px 46px 0px 0px rgba(0,114,188,1);
      box-shadow:         inset 0px 46px 0px 0px rgba(0,114,188,1);
      color: #fff;
    }
}

@-webkit-keyframes shadowFadeOut {
    0% {
      -webkit-box-shadow: inset 0px 46px 0px 0px rgba(0,114,188,1);
      -moz-box-shadow:    inset 0px 46px 0px 0px rgba(0,114,188,1);
      box-shadow:         inset 0px 46px 0px 0px rgba(0,114,188,1);
      color: #fff;
    }
    100% {
      -webkit-box-shadow: inset 0px 0px 0px 0px rgba(0,114,188,1);
      -moz-box-shadow:    inset 0px 0px 0px 0px rgba(0,114,188,1);
      box-shadow:         inset 0px 0px 0px 0px rgba(0,114,188,1);
      color: #fff;
    }
}

@-moz-keyframes shadowFade {
    0% {
      -webkit-box-shadow: inset 0px 0px 0px 0px rgba(0,114,188,1);
      -moz-box-shadow:    inset 0px 0px 0px 0px rgba(0,114,188,1);
      box-shadow:         inset 0px 0px 0px 0px rgba(0,114,188,1);
      color: #fff;
    }
    100% {
      -webkit-box-shadow: inset 0px 46px 0px 0px rgba(0,114,188,1);
      -moz-box-shadow:    inset 0px 46px 0px 0px rgba(0,114,188,1);
      box-shadow:         inset 0px 46px 0px 0px rgba(0,114,188,1);
      color: #fff;
    }
}

@-moz-keyframes shadowFadeOut {
    0% {
      -webkit-box-shadow: inset 0px 44px 0px 0px rgba(0,114,188,1);
      -moz-box-shadow:    inset 0px 44px 0px 0px rgba(0,114,188,1);
      box-shadow:         inset 0px 44px 0px 0px rgba(0,114,188,1);
      color: #fff;
    }
    100% {
      -webkit-box-shadow: inset 0px 0px 0px 0px rgba(0,114,188,1);
      -moz-box-shadow:    inset 0px 0px 0px 0px rgba(0,114,188,1);
      box-shadow:         inset 0px 0px 0px 0px rgba(0,114,188,1);
      color: #fff;
    }
}

.form input[type="checkbox"] {
    display:none;
}

.form input[type="checkbox"] + label span {
    display:inline-block;
    width:16px;
    height:16px;
    margin: -2px 4px 0 30px;
    vertical-align:middle;
    /*background:url("../images/checkbox.png") left top no-repeat;*/
    cursor:pointer;
}
.form input[type="checkbox"]:checked + label span {
    background:url("../images/checkbox.png") -16px top no-repeat;
}

/* === Copyright === */
.copyright {
  margin-top: 30px;
  text-align: center;
}

.copyright p, a {
  color: #828078;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.3s ease-out;
}

.copyright a:hover {
  color: #f2672e;
}


.title{
  margin-top: 30px;
  text-align: center;
}
    .title h1 {
        color: #50504b;
        text-transform: uppercase;
    }
