@import "compass/css3";

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}
.background-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../image/hinhnenok.jpg')  no-repeat center center / cover;
    z-index: -1; /* Đưa nền xuống dưới */
}
.login-wrap {
 border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7); 
  width: 400px;
  padding: 15px;
  height: 270px;
  border: 1px solid #898787;
}

h2 {
    
  text-align: center;
  font-weight: bold;
  font-size: 22px;
  margin-top: 10px;
  color: white;
}

.form {
  padding-top: 20px;
}

input[type="text"],
input[type="password"],
button {
  width: 80%;
  margin-left: 10%;
  margin-bottom: 15px;
  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;
}
