/* 登录.css*/
/* 清除默认边距 */
*{margin: 0; padding: 0;}

/* 整个网页的背景图片 */
body{
    background-color: #fff8eb;
}

/* header */
.header{
    margin-top: 10px;
}

.header>img{
    float: left;
    margin-left: 88px;
}

/* 清除a标签默认样式 */
a{
    text-decoration: none;
    color: rgb(239, 239, 239);
}

/* 导航条 */
.nav{
  width: 1905px;
  height: 70px;
  background-color: #49864d;
}
.nav ul{
  margin-left: 300px;
}
.nav ul li{
  height: 70px;
  padding: 0 15px;
  list-style: none;
  float: left;
}
.nav ul li a{
  line-height: 70px;
}
.nav a:hover {
  background-color: #fff;
  color: #333;
}
/* 下拉菜单 */
.dropdown {
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  z-index: 1;
  background-color: #f9f9f9;
  min-width: 160px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-content a {
  color: #333;
  padding: 10px;
  text-decoration: none;
  display: block;
}

/* container */
.container{
    position: absolute;
    margin-top: 20px;
    top: 500px;
    left: 1000px;
    transform: translate(-50%, -50%);
    width: 750px;
    height: 500px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
 }

.left {
    float: left;
    width: 50%;
    height: 100%;
    background-image: url(../images/小麦.jpg);
    background-size: cover;
  }
.right {
    float: left;
    width: 50%;
    height: 100%;
    padding: 30px;
    margin-top: 60px;
    box-sizing: border-box;
  }
  h4 {
    font-size: 15px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
  }
  form {
    display: flex;
    flex-direction: column;
    align-items: center;}
label{
	height: 35px;
}
  input[type="text"],
  input[type="password"] {
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
    padding: 10px;
    box-sizing: border-box;
    border-color: #ccc;
    border-radius: 3px;
    font-size: 11px;
	border-width: 1px;
  }
  /* select {
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
    padding: 10px;
    box-sizing: border-box;
    border: none;
    border-radius: 3px;
    font-size: 11px;
  } */
  input[type="submit"],
  input[type="reset"],
  button[type=submit1] {
    width: 100%;
    height: 50px;
    margin-top: 20px;
    border: none;
    border-radius: 3px;
    font-size: 11px;
    color: #fff;
    background-color: #333;
    cursor: pointer;
  }
  input[type="reset"] {
    background-color: #ccc;
  }