* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

body {
    background-color: #f5f7fa;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;

    padding: 20px;
}

.jqlogin-container {
    width: 100%;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.jqlogin-header {
    text-align: center;
    margin-bottom: 30px;
}

.jqlogin-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.jqlogin-subtitle {
    color: #666;
    font-size: 14px;
}

.jqlogin-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.jqlogin-input-group {
    position: relative;
    margin-bottom: 5px;
}

.jqlogin-country-code {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
    z-index: 2;
}

.jqlogin-country-code::after {
    content: "";
    display: block;
    width: 1px;
    height: 16px;
    background: #ddd;
    margin-left: 10px;
}

.jqlogin-input {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #e1e5eb;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s;
    outline: none;
}

.jqlogin-input.phone {
    padding-left: 85px;
}

.jqlogin-input:focus {
    border-color: #23b8bc;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.jqlogin-input-error {
    border-color: #ff4757 !important;
    box-shadow: 0 0 0 2px rgba(255, 71, 87, 0.2) !important;
}

.jqlogin-error-msg {
    color: #ff4757;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.jqlogin-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 20px;
    font-size: 14px;
}

.jqlogin-register {
    color:#23b8bc;
    text-decoration: none;
    font-weight: 500;
}

.jqlogin-register:hover {
    text-decoration: underline;
}

.jqlogin-problems {
    color: #999;
    text-decoration: none;
}

.jqlogin-problems:hover {
    color: #666;
}

.jqlogin-btn {
    height: 50px;
    background: #1a2434;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.jqlogin-btn:hover {
    background: #1a2434;
}

.jqlogin-btn:active {
    transform: translateY(1px);
}

.jqlogin-btn:disabled {
    background: #1a2434;
    cursor: not-allowed;
    transform: none;
}

