main {
    background-image: url('../../images/blue/bg_login.jpg'); /* 背景图 */
    background-repeat: no-repeat;
    background-size: cover; /* 使背景图覆盖整个main区域 */
    background-position: center; /* 居中背景图 */
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1; /* 让 main 区域填充剩余空间 */
}
.register-link {
    color: #60A8FA;
    display: flex;
    align-items: center;
    margin-bottom:30px;
    padding-top:-30px;
}

.content1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #fff; /* 白色背景 */
    width:720px;
}
	
h1 {
	margin-top:30px;
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    margin-bottom: 8px;
    padding-left: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #ffffff;
    width: 100%;
    height:50px;
    max-width: 400px;
}

.form-group label {
    margin-right: 5px;
    white-space: nowrap; /* 防止换行 */
}

.form-group input {
    flex-grow: 1;
    border: none; /* 移除输入框边框 */
    outline: none; /* 移除输入框点击时的边框 */
    height: 90%;
}

.form-group .separator {
    height: 20px;
    width: 1px;
    background: rgb(227, 230, 236);
    margin: 0 10px;
}

.form-group:hover {
 border-color: #555; /* 边框变深 */
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin-bottom: 50px;
}

.submit-btn {
    padding: 10px;
    width: 100%;
    max-width: 410px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 8px;
    margin-bottom: 8px;
    height:50px;
}
  
.submit-btn:hover {
    background-color: #2A8EFF;
}
 
.button_other {
    padding: 10px;
    width: 100%;
    max-width: 390px;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ccc; /* 添加浅灰色边框 */
    border-radius: 5px;
    cursor: pointer;
    margin-top: 8px;
    margin-bottom: 8px;
    height:26px;
}

.button_other:hover {
    border-color: #888; /* 鼠标移上去时边框变成深灰色 */
}

.errorDiv {
	color: red; 
	width: 410px; 
	text-align: left; 
	padding-left: 10px;
}

.get-verification-code {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    margin-bottom: 8px;
    border: 1px solid #ccc;
    background-color: #ffffff;
    width: 115px;
    height: 50px;
    border-radius: 5px;
    cursor: pointer;
    transition: border-color 0.3s ease;
    font-size:14px;
    color: black; /* 默认字体颜色 */
}

.get-verification-code:hover {
    border-color: #555; /* 边框变深 */
}

.get-verification-code.disabled {
    cursor: not-allowed;
    color: gray; /* 灰色字体 */
    font-size:12px;
    pointer-events: none;
    opacity: 0.5;
}

.get-verification-code.disabled:hover {
    border-color: #ccc; /* 禁用状态下边框颜色不变 */
}

.location-input {
    width: 90%;
    height:45px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.location-arrow {
    color: #ccc;
	padding-right: 10px;
    cursor: pointer;
}

.address-popup {
	 position: absolute;
	 top: 100%;
	 left: 0;
	 width: 600px; /* Increase width */
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

.popup-header {
    text-align: right;
    padding: 5px;
    border-bottom: 1px solid #ccc;
}

.popup-header span {
    cursor: pointer;
    font-size: 20px;
}

.popup-tabs {
    display: flex;
    border-bottom: 1px solid #ccc;
}

.popup-tabs span {
    flex: 1;
    padding: 10px;
    cursor: pointer;
    text-align: center;
}

.popup-tabs span.active {
    color: red;
    border-bottom: 2px solid red;
}


.tab-content {
    padding: 10px;
    font-size:12px;
    display: flex;
    flex-wrap: wrap; /* Make items wrap to the next line */
}

.tab-content label {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* 改为 flex-start 使内容居左 */
	width: 25%; /* 每行显示四个 */
    box-sizing: border-box;
    padding: 10px;
    cursor: pointer;
}

.selected-label {
    color: red;
}

.sms-btn {
    width: 120px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 0 2px 2px 0;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
    height: 50px;
}

.sms-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}