.mcp-login-wrapper {
    max-width: 420px;
    margin: 40px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
}
.mcp-login-title {
    font-size: 28px;
    margin-bottom: 6px;
    font-weight: 700;
}
.mcp-login-subtitle {
    color: #666;
    margin-bottom: 20px;
}
.mcp-login-form label {
    text-align: left;
    width: 100%;
    display: block;
    margin-top: 15px;
    font-weight: 600;
}
.mcp-login-form input {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border-radius: 8px;
    border: 1px solid #ccc;
}
.mcp-password-wrap {
    display: flex;
    align-items: center;
    position: relative;
}
.mcp-toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    cursor: pointer;
    color: #0078ff;
}
.mcp-login-links {
    margin-top: 20px;
    font-size: 14px;
}

.mcp-login-links a {
    color: #0073aa;
    text-decoration: none;
    font-weight: 600;
}

.mcp-login-links a:hover {
    text-decoration: underline;
}

.mcp-login-error {
    background: #ffdddd;
    color: #a30000;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid #cc0000;
    font-weight: 600;
}

.mcp-login-success {
    background: #e8ffeb;
    color: #0f7a1d;
    border: 1px solid #2ebe34;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-weight: 600;
}

