/* Login Container */
.login-container {
    max-width: 500px;
    width: 90%;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.login-title {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.form-group label {
    flex: 0 0 80px;
    text-align: right;
    font-weight: bold;
}

.form-group input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-group .hint {
    flex: 0 0 auto;
    font-size: 12px;
    color: #888;
}

.email-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.email-wrapper button {
    padding: 10px 20px;
    height: 38px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.email-wrapper button:hover {
    background-color: #0056b3; /* 蓝色加深 */
    transform: scale(1.05);
}

.email-wrapper button:active {
    background-color: #004080; /* 蓝色更深 */
    transform: scale(0.95);
}

.buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.buttons input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.buttons input[name="submit_login"] {
    background: #007BFF; /* 蓝色 */
    color: white;
}

.buttons input[name="submit_login"]:hover {
    background-color: #0056b3; /* 蓝色加深 */
    transform: scale(1.05);
}

.buttons input[name="submit_login"]:active {
    background-color: #004080; /* 蓝色更深 */
    transform: scale(0.95);
}

.buttons .register-btn {
    flex: 1;
    padding: 10px;
    background: #4CAF50; /* 绿色 */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.buttons .register-btn:hover {
    background-color: #45a049; /* 绿色加深 */
    transform: scale(1.05);
}

.buttons .register-btn:active {
    background-color: #3e8e41; /* 绿色更深 */
    transform: scale(0.95);
}

/* Info Section */
.info {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 14px;
}

.info br {
    line-height: 1.5; /* 增加行间距 */
}

.info > div {
    margin-bottom: 10px; /* 每行之间有一定间隙 */
}